Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix bug 222: Move all archs to newer __IPC_64 interface for {msg,sem,shm}ctl | Joakim Tjernlund | 2005-04-24 | 1 | -2/+2 |
| | | | | syscalls. This won't work on 2.2 kernels(I think). | ||||
* | Atsushi Nemoto writes: | Joakim Tjernlund | 2004-09-28 | 1 | -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 Andersen | 2004-01-21 | 1 | -7/+7 |
| | | | | -Erik | ||||
* | Make shm stuff work properly. | Eric Andersen | 2002-08-25 | 1 | -11/+8 |
| | | | | -Erik | ||||
* | Cope with systems that don't glob all these together, but use | Eric Andersen | 2002-05-30 | 1 | -15/+29 |
| | | | | | separate syscalls. -Erik | ||||
* | With all the headerfile changes, some functions didn't get there arg types | David McCullough | 2001-10-04 | 1 | -1/+1 |
| | | | | fixed up. | ||||
* | Add in the sysvipc patch from Michael Shmulevich | Eric Andersen | 2001-03-19 | 1 | -0/+79 |