summaryrefslogtreecommitdiffstats
path: root/libc/misc/sysvipc/sem.c
Commit message (Collapse)AuthorAgeFilesLines
* Synch with trunk @ 24242Carmelo Amoroso2008-12-031-1/+1
| | | | | Step 18: some more synch: hidden_proto, size reduction and signal handling changes.
* Synch with trunk @ 24075.Carmelo Amoroso2008-11-171-7/+5
| | | | Step 6: libc/misc
* Synch with trunk at rev 22997.Carmelo Amoroso2008-07-311-1/+1
| | | | | | | Basically trailing whitespaces removal, fix non standard keywords asm -> __asm__ inline -> __inline__ and some minor changes on trunk. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-3/+20
| | | | NPTL sh4 port build and work fine. All committed to allow Khem Ray working on a working branch to integrate the ARM nptl port. MIPS nptl port not tested but should still building and working fine. There are some other part non yet merged with trunk (misc/internals and some headers file that need some more work). Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Fix bug 222: Move all archs to newer __IPC_64 interface for {msg,sem,shm}ctlJoakim Tjernlund2005-04-241-2/+2
| | | | syscalls. This won't work on 2.2 kernels(I think).
* Atsushi Nemoto writes:Joakim Tjernlund2004-09-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | Hi. I found a mismatch between uClibc and kernel in semctl definition. In uClibc/libc/misc/sysvipc/sem.c: static inline _syscall4(int, __semctl, int, semid, int, semnum, int, cmd, union semun *, arg); ... int semctl(int semid, int semnum, int cmd, ...) ... arg = va_arg (ap, union semun); ... return __semctl(semid, semnum, cmd, &arg); But kernel's semctl is: asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg) The last argument is an union semun itself, not a pointer to the union. Here is a patch.
* Split up syscalls.c, since it had grown to be quite large and ugly.Eric Andersen2004-01-211-7/+7
| | | | -Erik
* Make shm stuff work properly.Eric Andersen2002-08-251-11/+8
| | | | -Erik
* Cope with systems that don't glob all these together, but useEric Andersen2002-05-301-15/+29
| | | | | separate syscalls. -Erik
* With all the headerfile changes, some functions didn't get there arg typesDavid McCullough2001-10-041-1/+1
| | | | fixed up.
* Add in the sysvipc patch from Michael ShmulevichEric Andersen2001-03-191-0/+79