diff options
author | Petar Jovanovic <petar.jovanovic@imgtec.com> | 2013-10-30 14:46:31 +0100 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2013-11-29 11:42:04 +0200 |
commit | 55a2b1631fb343edac4a2d4596c72e58ee1372b3 (patch) | |
tree | 14eb9854832da080f8b21658841763690d115bdf /linux-user/mips64/target_cpu.h | |
parent | 9721cf2cd6ecfc50d2ab1349e27b53c4bc36df54 (diff) | |
download | qemu-55a2b1631fb343edac4a2d4596c72e58ee1372b3.zip |
linux-user: create target_structs header to place ipc_perm and shmid_ds
Creating target_structs header in linux-user/$arch/ and making
target_ipc_perm and target_shmid_ds its first inhabitants.
The struct defintions may/should be further fine-tuned by arch maintainers.
Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/mips64/target_cpu.h')
-rw-r--r-- | linux-user/mips64/target_cpu.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/linux-user/mips64/target_cpu.h b/linux-user/mips64/target_cpu.h index fa36407c68..f16991b4ef 100644 --- a/linux-user/mips64/target_cpu.h +++ b/linux-user/mips64/target_cpu.h @@ -1 +1,19 @@ +/* + * MIPS64 specific structures for linux-user + * + * Copyright (c) 2013 Fabrice Bellard + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see <http://www.gnu.org/licenses/>. + */ #include "../mips/target_cpu.h" |