Optimize andes_clear_page() and andes_copy_page() with prefetch
[linux-2.6/linux-mips.git] / include / asm-sparc64 / ipc.h
blob87fe443d54a3927159b0368c64c421a2408bee5f
1 #ifndef __SPARC64_IPC_H__
2 #define __SPARC64_IPC_H__
4 /*
5 * These are used to wrap system calls on the sparc.
7 * See arch/sparc64/kernel/sys_sparc32.c for ugly details..
8 */
9 struct ipc_kludge {
10 u32 msgp;
11 s32 msgtyp;
14 #define SEMOP 1
15 #define SEMGET 2
16 #define SEMCTL 3
17 #define MSGSND 11
18 #define MSGRCV 12
19 #define MSGGET 13
20 #define MSGCTL 14
21 #define SHMAT 21
22 #define SHMDT 22
23 #define SHMGET 23
24 #define SHMCTL 24
26 /* Used by the DIPC package, try and avoid reusing it */
27 #define DIPC 25
29 /* We don't need to maintain backward compatibility on 64bit, we've started fresh */
30 #define IPCCALL(version,op) (op)
32 #endif