summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* autogen.sh: Implement GNOME Build APIbaserock/morphColin Walters2013-01-161-1/+3
| | | | | | http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
* pthread_equal(): do not assume pthread_t is a comparable typeRémi Denis-Courmont2010-12-231-1/+1
| | | | | | | | | Anyway, the return value from pthread_self() being the only legal pthread_t value in the case of stubs, all threads are one and the same. In other words, pthread_equal() is always true. Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Peter Harris <pharris@opentext.com>
* pthread_self(): do not assume pthread_t and int are compatibleRémi Denis-Courmont2010-12-232-1/+12
| | | | | | | | | POSIX does not warrant much about pthread_t. It is not necessarily the same convertible to int as far as the calling conventions are concerned. Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Peter Harris <pharris@opentext.com>
* Fix `distcheck' targetJulien Danjou2010-06-221-2/+4
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Generate stubs.c via MakefileJulien Danjou2010-05-052-2/+3
| | | | | Signed-off-by: Julien Danjou <julien@danjou.info> Reviewed-by: Jamey Sharp <jamey@minilop.net>
* Generate stubs.c at autogen time from a template file.M Joonas Pihlaja2010-05-056-194/+107
| | | | | | | | It's easier to add a line to a list of functions in a template file than copy-pasting five lines of template from other entries and editing configure.ac. Reviewed-by: Jamey Sharp <jamey@minilop.net>
* fix pthread_exit protoSamuel Thibault2009-11-061-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Release libpthread-stubs 0.30.3Julien Danjou2009-10-141-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Add additional pthread_* stubs and abort() on pthread_cond_*wait.Samuel Thibault2009-10-102-4/+55
| | | | | | | | | | | | | | | | | | | | Here is a patch that adds only pthread_condattr_init/destroy, pthread_cond_timedwait, pthread_exit, and makes both cond_*wait abort instead of just returning 0. Jamey Sharp gave rationale for cond_wait aborting: > In hindsight, I'm concerned about the fact that we provide > pthread_cond_wait as a stub returning 0. If it's ever called in a > single-threaded application, that function should probably call abort(). > The real implementation would be guaranteed to hang in that > circumstance, after all. In XCB, we need this to be available as a stub, > but I can prove that it won't be called unless there are really multiple > threads. Further discussion leading to this patch was in the thread here: http://lists.freedesktop.org/archives/xcb/2009-October/005110.html Signed-off-by: Jamey Sharp <jamey@minilop.net>
* Revert "Provide sem_* functions"Julien Danjou2009-10-092-104/+1
| | | | | | This reverts commit 3d8dfe9a9ad0a22bdcec555bd3d0d9b5950a6dab. Signed-off-by: Julien Danjou <julien@danjou.info>
* Release libpthread-stubs 0.20.2Julien Danjou2009-09-231-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Provide sem_* functionsSamuel Thibault2009-08-202-1/+104
| | | | | | | Some applications, instead of using pthread_mutex_t, use anonymous semaphores (sem_init) for locking. Signed-off-by: Julien Danjou <julien@danjou.info>
* Update autogen.sh to one that does objdir != srcdirMatthias Hopf2007-04-111-1/+10
|
* Add README0.1Josh Triplett2006-11-231-0/+9
|
* Quote argument of test in AM_CONDITIONAL.Josh Triplett2006-11-211-1/+1
|
* Library that provides pthread stubs that are missing from your platform libc.Jamey Sharp2006-11-217-0/+251