Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 104152
b: refs/heads/master
c: 100b10d
h: refs/heads/master
v: v3
  • Loading branch information
Sam Ravnborg authored and David S. Miller committed Jul 18, 2008
1 parent fc9c5ba commit f50d76a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 36 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6d1f4b88ee73c9a073277dd1529fbbce356e04e8
refs/heads/master: 100b10d752bafafda2a508235b7df6718e42bd76
23 changes: 15 additions & 8 deletions trunk/include/asm-sparc/msgbuf.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _SPARC64_MSGBUF_H
#define _SPARC64_MSGBUF_H
#ifndef _SPARC_MSGBUF_H
#define _SPARC_MSGBUF_H

/*
/*
* The msqid64_ds structure for sparc64 architecture.
* Note extra padding because this structure is passed back and forth
* between kernel and user space.
Expand All @@ -11,13 +11,20 @@
* - 2 miscellaneous 32-bit values
*/

#if defined(__sparc__) && defined(__arch64__)
# define PADDING(x)
#else
# define PADDING(x) unsigned int x;
#endif


struct msqid64_ds {
struct ipc64_perm msg_perm;
unsigned int __pad1;
PADDING(__pad1)
__kernel_time_t msg_stime; /* last msgsnd time */
unsigned int __pad2;
PADDING(__pad2)
__kernel_time_t msg_rtime; /* last msgrcv time */
unsigned int __pad3;
PADDING(__pad3)
__kernel_time_t msg_ctime; /* last change time */
unsigned long msg_cbytes; /* current number of bytes on queue */
unsigned long msg_qnum; /* number of messages in queue */
Expand All @@ -27,5 +34,5 @@ struct msqid64_ds {
unsigned long __unused1;
unsigned long __unused2;
};

#endif /* _SPARC64_MSGBUF_H */
#undef PADDING
#endif /* _SPARC_MSGBUF_H */
28 changes: 1 addition & 27 deletions trunk/include/asm-sparc64/msgbuf.h
Original file line number Diff line number Diff line change
@@ -1,27 +1 @@
#ifndef _SPARC64_MSGBUF_H
#define _SPARC64_MSGBUF_H

/*
* The msqid64_ds structure for sparc64 architecture.
* Note extra padding because this structure is passed back and forth
* between kernel and user space.
*
* Pad space is left for:
* - 2 miscellaneous 64-bit values
*/

struct msqid64_ds {
struct ipc64_perm msg_perm;
__kernel_time_t msg_stime; /* last msgsnd time */
__kernel_time_t msg_rtime; /* last msgrcv time */
__kernel_time_t msg_ctime; /* last change time */
unsigned long msg_cbytes; /* current number of bytes on queue */
unsigned long msg_qnum; /* number of messages in queue */
unsigned long msg_qbytes; /* max number of bytes on queue */
__kernel_pid_t msg_lspid; /* pid of last msgsnd */
__kernel_pid_t msg_lrpid; /* last receive pid */
unsigned long __unused1;
unsigned long __unused2;
};

#endif /* _SPARC64_MSGBUF_H */
#include <asm-sparc/msgbuf.h>

0 comments on commit f50d76a

Please sign in to comment.