Re: semaphores/semget problem

1999-11-01 Thread Peter Jeremy
Kent Boortz <[EMAIL PROTECTED]> wrote: > semget(IPC_PRIVATE, SEMMSL, IPC_EXCL | IPC_CREAT | 0600)) > > fails with the error "No space left on device". Since SEMMSL defaults to SEMMNS, this is guaranteed to fail if anything else is using semaphores. > I tried to > use a smaller value for SEM

Re: semaphores/semget problem

1999-10-31 Thread J Wunsch
Kent Boortz <[EMAIL PROTECTED]> wrote: > semget(IPC_PRIVATE, SEMMSL, IPC_EXCL | IPC_CREAT | 0600)) > > fails with the error "No space left on device". I tried to > use a smaller value for SEMMSL but it did not help. The tunable kernel paramater "SEMMNS" defaults to 60, that's the maximal n

semaphores/semget problem

1999-10-30 Thread Kent Boortz
I tried to port the Linux sound program GramoFile but failed. The source was found at http://cardit.et.tudelft.nl/~card06/ It was easy to make it compile and link, mostly changing to , and -lcurses to -lncurses. But creating the System V semaphores fails when trying to play some sound. A c