#
5c70dac8 |
| 03-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Modify the implementation of libc semaphores so that they can be overridden by the threads library to provide a userland version of non-pshared semaphores and cancellation points. Also add a sem_tim
Modify the implementation of libc semaphores so that they can be overridden by the threads library to provide a userland version of non-pshared semaphores and cancellation points. Also add a sem_timedwait().
The libc version of semaphores always uses kernel semaphores regardless of whether pshared is set or not. When threads are not present, it is difficult to get sem_wait() or sem_timedwait() to do the right thing (since pthread_cond_timedwait() and pthread_cond_wait() are stubs in libc and just return immediately).
show more ...
|
#
b6897522 |
| 17-Jan-2004 |
David Xu <davidxu@FreeBSD.org> |
Backout revision 1.6, because some stub functions not in libc, and non-threaded won't build. The cancellation point support should be further discussed.
|
#
cc3782cb |
| 17-Jan-2004 |
David Xu <davidxu@FreeBSD.org> |
Enable cancellation point in sem_wait, it is required by POSIX. For pshared semaphore, this commit still does not enable cancellation point, I think there should be a pthread_enter_cancellation_point
Enable cancellation point in sem_wait, it is required by POSIX. For pshared semaphore, this commit still does not enable cancellation point, I think there should be a pthread_enter_cancellation_point_np for libc to implement a safe cancellation point.
show more ...
|
Revision tags: release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0 |
|
#
e0554a53 |
| 16-Feb-2003 |
Jacques Vidrine <nectar@FreeBSD.org> |
Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled.
Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled.
Reviewed by: /sbin/md5
show more ...
|
Revision tags: release/5.0.0_cvs, release/5.0.0 |
|
#
a91b25dc |
| 14-Jan-2003 |
Tim J. Robbins <tjr@FreeBSD.org> |
Add the newly created semaphore to the named semaphore list in sem_open() so that multiple opens of the same semaphore without an intervening sem_close() return the same object, and so that sem_close
Add the newly created semaphore to the named semaphore list in sem_open() so that multiple opens of the same semaphore without an intervening sem_close() return the same object, and so that sem_close() does not segfault while trying to remove the item from the list.
show more ...
|
Revision tags: release/4.7.0_cvs |
|
#
ddb4fb5b |
| 04-Oct-2002 |
Mike Barcroft <mike@FreeBSD.org> |
Add restrict type-qualifier to sem_getvalue().
|
#
bf4dc877 |
| 19-Sep-2002 |
Alfred Perlstein <alfred@FreeBSD.org> |
Welcome the sem_ API to libc!
|
#
dd554467 |
| 23-Jan-2010 |
Antoine Brodin <antoine@FreeBSD.org> |
Reapply r201145 to lib/libc/gen/sem.c
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
3e18aa98 |
| 05-Jan-2010 |
David Xu <davidxu@FreeBSD.org> |
forgot to remove SYM_FBP10. ;-)
|
#
79aaab04 |
| 05-Jan-2010 |
David Xu <davidxu@FreeBSD.org> |
Remove unused macros.
|
#
9b0f1823 |
| 05-Jan-2010 |
David Xu <davidxu@FreeBSD.org> |
Use umtx to implement process sharable semaphore, to make this work, now type sema_t is a structure which can be put in a shared memory area, and multiple processes can operate it concurrently. User
Use umtx to implement process sharable semaphore, to make this work, now type sema_t is a structure which can be put in a shared memory area, and multiple processes can operate it concurrently. User can either use mmap(MAP_SHARED) + sem_init(pshared=1) or use sem_open() to initialize a shared semaphore. Named semaphore uses file system and is located in /tmp directory, and its file name is prefixed with 'SEMD', so now it is chroot or jail friendly. In simplist cases, both for named and un-named semaphore, userland code does not have to enter kernel to reduce/increase semaphore's count. The semaphore is designed to be crash-safe, it means even if an application is crashed in the middle of operating semaphore, the semaphore state is still safely recovered by later use, there is no waiter counter maintained by userland code. The main semaphore code is in libc and libthr only has some necessary stubs, this makes it possible that a non-threaded application can use semaphore without linking to thread library. Old semaphore implementation is kept libc to maintain binary compatibility. The kernel ksem API is no longer used in the new implemenation.
Discussed on: threads@
show more ...
|
#
13e403fd |
| 28-Dec-2009 |
Antoine Brodin <antoine@FreeBSD.org> |
(S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryab
(S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryabinkin (initial version) MFC after: 1 month
show more ...
|
Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0 |
|
#
c86b3a98 |
| 18-Oct-2005 |
Stefan Farfeleder <stefanf@FreeBSD.org> |
Make __sem_timedwait() consistent with the sem_timedwait() prototype.
|
#
d8f77b45 |
| 20-Aug-2005 |
Stefan Farfeleder <stefanf@FreeBSD.org> |
Include <sys/types.h> and <limits.h> ourselves, don't assume they are included through <pthread.h>.
gen/sem.c: Prerequisite for <_semaphore.h> net/getprotoent.c: USHRT_MAX net/getservent.c: USHRT_M
Include <sys/types.h> and <limits.h> ourselves, don't assume they are included through <pthread.h>.
gen/sem.c: Prerequisite for <_semaphore.h> net/getprotoent.c: USHRT_MAX net/getservent.c: USHRT_MAX stdio/ungetwc.c: MB_LEN_MAX stdio/vfwscanf.c: MB_LEN_MAX
show more ...
|
Revision tags: release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1 |
|
#
e3b4bf94 |
| 06-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Prevent memory leak on sem_destroy() by destroying the semaphore's internal mutex and CV.
|
#
e7f15248 |
| 06-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Only allow the semaphore to be taken when the value is positive. Don't decrement it twice when it is taken.
Reported by: kris
|
#
08a6a888 |
| 06-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Correct check for invalid semaphore on sem_destroy() (s/==/!=/).
Reported by: kris
|
#
3962ef43 |
| 05-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Correct the weak reference for sem_unlink.
|
#
903f2e50 |
| 04-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Allow libc's version of sem_trywait() to work for non-pshared mutexes.
|
#
5c70dac8 |
| 03-Feb-2004 |
Daniel Eischen <deischen@FreeBSD.org> |
Modify the implementation of libc semaphores so that they can be overridden by the threads library to provide a userland version of non-pshared semaphores and cancellation points. Also add a sem_tim
Modify the implementation of libc semaphores so that they can be overridden by the threads library to provide a userland version of non-pshared semaphores and cancellation points. Also add a sem_timedwait().
The libc version of semaphores always uses kernel semaphores regardless of whether pshared is set or not. When threads are not present, it is difficult to get sem_wait() or sem_timedwait() to do the right thing (since pthread_cond_timedwait() and pthread_cond_wait() are stubs in libc and just return immediately).
show more ...
|
#
b6897522 |
| 17-Jan-2004 |
David Xu <davidxu@FreeBSD.org> |
Backout revision 1.6, because some stub functions not in libc, and non-threaded won't build. The cancellation point support should be further discussed.
|
#
cc3782cb |
| 17-Jan-2004 |
David Xu <davidxu@FreeBSD.org> |
Enable cancellation point in sem_wait, it is required by POSIX. For pshared semaphore, this commit still does not enable cancellation point, I think there should be a pthread_enter_cancellation_point
Enable cancellation point in sem_wait, it is required by POSIX. For pshared semaphore, this commit still does not enable cancellation point, I think there should be a pthread_enter_cancellation_point_np for libc to implement a safe cancellation point.
show more ...
|
Revision tags: release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0 |
|
#
e0554a53 |
| 16-Feb-2003 |
Jacques Vidrine <nectar@FreeBSD.org> |
Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled.
Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go). Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled.
Reviewed by: /sbin/md5
show more ...
|
Revision tags: release/5.0.0_cvs, release/5.0.0 |
|
#
a91b25dc |
| 14-Jan-2003 |
Tim J. Robbins <tjr@FreeBSD.org> |
Add the newly created semaphore to the named semaphore list in sem_open() so that multiple opens of the same semaphore without an intervening sem_close() return the same object, and so that sem_close
Add the newly created semaphore to the named semaphore list in sem_open() so that multiple opens of the same semaphore without an intervening sem_close() return the same object, and so that sem_close() does not segfault while trying to remove the item from the list.
show more ...
|