PPC port cleaned up, static linking works well now.

This commit is contained in:
rofl0r
2012-11-09 23:36:55 +01:00
parent 7669d1e334
commit 1c8eb8bad7
55 changed files with 1373 additions and 1095 deletions

16
arch/powerpc/bits/msg.h Normal file
View File

@@ -0,0 +1,16 @@
struct msqid_ds
{
struct ipc_perm msg_perm;
time_t msg_stime;
int __unused1;
time_t msg_rtime;
int __unused2;
time_t msg_ctime;
int __unused3;
unsigned long msg_cbytes;
msgqnum_t msg_qnum;
msglen_t msg_qbytes;
pid_t msg_lspid;
pid_t msg_lrpid;
unsigned long __unused[2];
};