Re: condvar wakeups
Saurabh Desai <[email protected]>
| Newsgroups | gmane.comp.lib.phil |
|---|---|
| Message-ID | <[email protected]> |
Ulrich Drepper wrote: > We (well, mostly Ingo I guess) will look at the data. In case somebody > wants to join in the fun, I've uploaded the necessary files: > > http://people.redhat.com/drepper/futex-requeue-2.5.68-U1 > > the patch against the current BK kernel The compilation fails for UP-kernel. The __wake_up_sync is only defined for CONFIG_SMP, so it failed for UP. kernel/built-in.o(.text+0x116ea): In function `futex_wake': : undefined reference to `__wake_up_sync' kernel/built-in.o(.text+0x11904): In function `futex_requeue': : undefined reference to `__wake_up_sync' make: *** [vmlinux] Error 1 - Saurabh