1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
2016-11-22 Werner Koch <wk@gnupg.org>
Release 1.3.
* configure.ac: Bump LT version to C0/A0/R6.
2016-11-21 Werner Koch <wk@gnupg.org>
Bypass npth_unprotect/protect when npth has not yet been initialized.
* src/npth.c (initialized_or_any_threads): New variable.
(npth_init): Set var.
(npth_create): Set var.
(npth_unprotect, npth_protect): Shortcut if not initialized.
* w32/npth.c (initialized_or_any_threads): New variable.
(npth_init): Set var.
(npth_unprotect, npth_protect): Shortcut if not initialized.
2016-10-10 Justus Winter <justus@gnupg.org>
src: Fix setting thread names on macOS.
* src/npth.c (npth_setname_np): Support Apple's one-argument form.
2016-07-13 Werner Koch <wk@gnupg.org>
build: Update config.{guess,sub} to {2016-05-15,2016-06-20}.
* build-aux/config.guess: Update.
* build-aux/config.sub: Update.
2016-07-05 NIIBE Yutaka <gniibe@fsij.org>
Fix for semaphore access by child.
* configure.ac (HAVE_FORK_UNSAFE_SEMAPHORE): New.
* src/npth.c (sem_init): Use NPTH_SEMAPHORE_PSHARED.
* tests/t-fork.c: New.
2016-06-25 Werner Koch <wk@gnupg.org>
w32: Include io.h for read(2) and write(2).
* w32/npth.c: Include io.h.
Fix problem with regression tests on recent glibc.
* configure.ac: Change pthread test to test pthread_detach
2015-11-26 Werner Koch <wk@gnupg.org>
Improve debug output.
* w32/npth.c (_npth_debug): Print to stderr.
(enter_npth, leave_npth): Include the tid in the debug output.
2015-08-25 Werner Koch <wk@gnupg.org>
Add configure option --enable-build-timestamp.
* configure.ac (BUILD_TIMESTAMP): Set to "<none>" by default. Also
with ac_define_unquoted.
2015-06-06 Jim Meyering <meyering@fb.com>
configure.ac: improve check for clock_gettime library.
* configure.ac: When using AC_SEARCH_LIBS, handle the case in which
that function returns "none required". Also, save and restore LIBS
around the check, and properly m4-quote the first argument to AC_DEFINE.
Finally, also set and AC_SUBST LIB_CLOCK_GETTIME.
This added code is very similar to that provided in gnulib's
clock-time.m4.
* tests/Makefile.am (LDADD): Append $(LIB_CLOCK_GETTIME).
2015-04-28 NIIBE Yutaka <gniibe@fsij.org>
npth-config: supply a library dependency for clock_gettime.
* configure.ac (clock_gettime): Update config_libs.
2015-04-11 Werner Koch <wk@gnupg.org>
Release 1.2.
2015-02-03 Werner Koch <wk@gnupg.org>
w32: Use -static-libgcc to avoid linking to libgcc_s_sjlj-1.dll.
* w32/Makefile.am: Remove non-Windows stuff.
(extra_ltoptions): New.
(libnpth_la_LDFLAGS): Use it.
2015-01-28 Werner Koch <wk@gnupg.org>
Switch to automake 1.14.
* Makefile.am (AUTOMAKE_OPTIONS): Move to ...
* configure.ac (AM_INIT_AUTOMAKE): here. Add serial-tests.
* build-aux/compile: Add.
* build-aux/config.guess, build-aux/config.sub: Update.
* build-aux/depcomp: Update.
* build-aux/missing: Update.
2014-12-18 Werner Koch <wk@gnupg.org>
Don't get fooled by leave_npth changing ERRNO.
* src/npth.c: Save ERRNO.
2014-10-31 Werner Koch <wk@gnupg.org>
Release 1.1.
* configure.ac: Set LT version to C0/A0/R4.
2014-10-29 Werner Koch <wk@gnupg.org>
Allow use on systems which return ENOSYS for sem_init.
* src/npth.c: Include some more headers.
(sceptre_buffer): New.
(sceptre): Change to a pointer and init to sceptre_buffer.
(enter_npth, leave_npth): Adjust.
(try_sem_open): New.
(npth_init): Check for ENOSYS and use sem_open.
2014-09-18 Werner Koch <wk@gnupg.org>
Release 1.0.
* configure.ac: Set LT version to C0/A0/R2.
2014-06-27 Werner Koch <wk@gnupg.org>
w32: Fix segv in npth_eselect.
* w32/npth.c (npth_eselect): Obvious fix.
w32: Change an npth_eselect arg to unsigned.
* w32/npth.c (npth_eselect): Change arg EVENTS_SET to unsigned int.
2014-06-26 Werner Koch <wk@gnupg.org>
w32: Let npth_eselect return 0 for timeout. Fix replacement error codes.
* w32/npth.c (npth_eselect): Remove debug output. Return 0 for timeout.
* w32/npth.h (ETIMEDOUT, EOPNOTSUPP): Change to more correct values.
2014-02-19 Werner Koch <wk@gnupg.org>
w32: Make npth_eselect actually work.
* w32/npth.c (npth_eselect): Rewrite.
w32: Avoid calling FD_ISSET with a NULL fdset.
* w32/npth.c (npth_eselect): Check fdset before callig FD_foo.
2014-01-10 Werner Koch <wk@gnupg.org>
Use the generic autogen.sh script.
* autogen.rc: New.
* Makefile.am (EXTRA_DIST): Add it.
* autogen.sh: Update from GnuPG.
Move helper scripts to build-aux.
* config.guess, config.sub, depcomp, install-sh
* ltmain.sh, missing: Move to build-aux/.
* configure.ac (AC_CONFIG_AUX_DIR): New.
(AM_SILENT_RULES): New.
2014-01-09 Werner Koch <wk@gnupg.org>
Fix creation of w32 npth-config tool.
* src/npth-config.in: Move to ../.
* src/npth.m4: Move to ../.
* w32/npth-config.in: Remove.
* w32/npth.m4: Remove.
* Makefile.am (EXTRA_DIST): Add npth-config.in and npth.m4.
(bin_SCRIPTS): new.
(m4datadir, m4data_DATA): New.
* configure.ac (AC_CONFIG_FILES): Adjust accordingly.
Add configure option --enable-silent-rules.
* configure.ac: Add AM_SILENT_RULES.
Update libtool to support Android.
* m4/libtool.m4: Add "linux*android*" case. Taken from the
libgpg-error.
Update config.{guess.sub} to a decent version (2013-11-29)
Add hack to have different names for 64 bit Windows DLLs.
* ltmain.sh: Prefix the SO number for W64 with a "6".
Fix libtool 2.4.2 to correctly detect .def files.
* ltmain.sh (sed_uncomment_deffile): New.
(orig_export_symbols): Uncomment def file before testing for EXPORTS.
* m4/libtool.m4: Do the same for the generated code.
Update libtool to Debian's 2.4.2.
w32: Fix build problems with current compilers.
* configure.ac (NTELIBS): ac_subst for W32.
* w32/npth.h (struct timespec): Do not define for current mingw-w64
versions.
2013-12-10 NIIBE Yutaka <gniibe@fsij.org>
Conditionalize use of pthread_atfork.
* configure.ac: Add checking pthread_atfork.
* src/npth-sigev.c (npth_sigev_fini): Call pthread_atfork only when
it's available.
2013-07-03 NIIBE Yutaka <gniibe@fsij.org>
Restore sigmask at fork.
* src/npth-sigev.c (restore_sigmask_for_child_process): New.
(npth_sigev_fini): Register restore_sigmask_for_child_process.
2012-11-21 Ben Kibbey <bjk@luxsci.net>
Build fix for NetBSD.
* src/npth.c (npth_setname_np): conditional check for __NetBSD__ and
adapt correct parameters.
2012-11-16 Werner Koch <wk@gnupg.org>
Improve parsing of the GIT revision number.
* configure.ac (git_revision): Use git rev-parse.
Fix non-portable use of chmod in autogen.sh.
* autogen.sh: Remove option -c from chmod.
2012-09-26 Werner Koch <wk@gnupg.org>
Make local variables configure hack more robust.
* configure.ac (emacs_local_vars_begin): Use extra m4 quoting so that
newer Emscasen won't take it up as Local Variables for this file.
2012-08-08 Werner Koch <wk@gnupg.org>
Release 0.91.
* configure.ac: Bump LT version to C0/A0/R2.
2012-05-15 Werner Koch <wk@gnupg.org>
Really fix the version number parsing.
* src/npth.m4 (_AM_PATH_NPTH_CONFIG, _AM_PATH_NPTH_CONFIG]: Fix last
fix. Print detected version number. Print warning for non-matching
host.
Fix version number parsing in npth.m4.
* src/npth.m4: Adjust for n.m style version numbers.
2012-05-10 Werner Koch <wk@gnupg.org>
Provide gettimeofday fallback for clock_gettime.
* configure.ac (AC_CHECK_FUNCS): Check for gettimeofday.
* src/npth.c (npth_clock_gettime): Use gettimeofday if clock_gettime
is not available.
Return an error if npth_rwlock_timedwrlock is not supported.
* src/npth.c (npth_rwlock_timedwrlock): Return ENOSYS if there is no
way to build it.
Avoid compiler warning for debug variable.
* src/npth.c (main_thread): Flag as volatile.
Include required headers into pth.h.
* src/npth.h.in: Include sys/time.h and signal.h. Include time.h only
if available.
* configure.ac (INSERT_SYS_TIME_H, INSERT_TIME_H, INSERT_SIGNAL_H):
Detect header files and ac_subst snippets.
Remove obsolete debug stuff.
* src/npth.c (enter_npth, leave_npth): Remove argument and debug
stuff.
(ENTER, LEAVE): Adjust macros accordingly.
Add a basic create and join thread test case.
* tests/t-thread.c: New
* tests/t-support.h (opt_verbose): New.
(fail_msg, info_msg): New.
Make npth_setname_np actually work.
* src/npth.c (npth_setname_np): Fix typo in name and test macro.
Check for -lsocket et al.
* m4/libsocket.m4: New. Stripped down from gnulib's socketlib.m4.
* tests/Makefile.am (LDADD): Add LIBSOCKET.
* configure.ac (NETLIBS): Remove because it is not used.
(npth_LIBSOCKET): Call.
2012-05-09 Werner Koch <wk@gnupg.org>
Add a pselect emulation.
* src/npth.c [!HAVE_PSELECT]: Include signal.h
(npth_pselect) [!HAVE_PSELECT]: Implement a crude pselect emulation
* configure.ac (AC_CHECK_FUNCS): Test for pselect.
Cleanup the debug code.
Debugging was only used for initial testing and there is no interface
to enable it at runtime. This change make the code a little bit
cleaner.
Take care of possible surprising sem_init implementations.
* src/npth.c (npth_init): Return an error only for POSIX.1-2008.
Make the t-mutex test more robust.
* tests/t-support.h: Simplify.
* tests/t-mutex.c: Include t-support.h.
(main): Check each call and explicitly return 0.
Let npth_init actually return an error.
* src/npth.c (npth_init): Return ERRNO.
Provide a replacement for socklen_t.
* m4/socklen.m4, m4/sys_socket_h.m4: New.
* configure.ac (INSERT_SOCKLEN_T): New.
* src/npth.h.in (INSERT_SOCKLEN_T): New substitution.
(npth_connect, npth_accept): Use _npth_socklen_t.
Do not use ___FUNCTION__.
* src/npth.c: Define replacement for __func__.
(ENTER, LEAVE): Use __func__.
Tweak for building with c99.
* tests/Makefile.am (AM_CPPFLAGS): Add -D_POSIX_C_SOURCE=200112L.
Add unistd.h is available.
* configure.ac (AC_CHECK_HEADERS): Test for unistd.h.
* src/npth.c [HAVE_UNISTD_H]: Include unistd.h.
2012-05-04 Werner Koch <wk@gnupg.org>
Implement git magic to create beta version numbers.
* configure.ac (BUILD_FILEVERSION): Move after detection of W32.
Release 0.90.
* configure.ac: Bump LT version to C0/A0/R1.
2012-03-09 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Support Android API level earlier than 9.
* src/npth.h [__ANDROID__]: Include <android/api-level.h>
(_NPTH_NO_RWLOCK) [__ANDROID__ && __ANDROID_API__ < 9]: Define.
(npth_rwlockattr_t, npth_rwlockattr_init, npth_rwlockattr_destroy,
npth_rwlockattr_gettype_np, npth_rwlockattr_settype_np,
NPTH_RWLOCK_PREFER_READER_NP, NPTH_RWLOCK_PREFER_WRITER_NP,
NPTH_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, NPTH_RWLOCK_DEFAULT_NP,
NPTH_RWLOCK_INITIALIZER, NPTH_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP,
NPTH_MUTEX_INITIALIZER, npth_rwlock_t, npth_rwlock_init,
npth_rwlock_destroy, npth_rwlock_tryrdlock, npth_rwlock_rdlock,
npth_rwlock_trywrlock, npth_rwlock_timedrdlock, npth_rwlock_wrlock,
npth_rwlock_rdlock, npth_rwlock_timedwrlock, npth_rwlock_unlock
(_NPTH_NO_RWLOCK): Alternative implementation based on mutex.
2012-02-28 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Remove npth_yield.
* src/npth.h.in (npth_yield): Macro removed (should have been a
function anyway).
* w32/npth.c (npth_yield): Remove function.
* w32/npth.h (npth_yield): Remove prototype.
* w32/npth.def (npth_yield): Remove symbol export.
Make rwlock try and timed functions optional.
* configure.ac: Check for pthread_rwlock_rdlock, pthread_rwlock_wrlock,
pthread_rwlock_timedrdlock, pthread_rwlock_timedwrlock,
pthread_rwlock_tryrdlock, pthread_rwlock_trywrlock.
* src/npth.c (trylock_func_t): New type.
(busy_wait_for): New function.
(npth_mutex_timedlock) [!HAVE_PTHREAD_MUTEX_TIMEDLOCK]: Reimplement
in terms of busy_wait_for.
(npth_rwlock_rdlock, npth_rwlock_timedrdlock)
[!HAVE_PTHREAD_RWLOCK_TRYRDLOCK]: Skip trylock.
(npth_rwlock_wrlock, npth_rwlock_timedwrlock)
[!HAVE_PTHREAD_RWLOCK_TRYWRLOCK]: Skip trylock call.
(npth_rwlock_timedrdlock) [!HAVE_PTHREAD_RWLOCK_TIMEDRDLOCK]:
Use busy_wait_for.
(npth_rwlock_timedwrlock) [!HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK]:
Use busy_wait_for.
Add generated files src/npth.h and w32/npth-config.
2012-02-08 Marcus Brinkmann <mb@g10code.com>
Fix include path for non-w32 builds.
* tests/Makefile.am (AM_CPPFLAGS) [!HAVE_W32_SYSTEM]:
Locate header in build dir, not src.
2012-01-31 Marcus Brinkmann <mb@g10code.com>
Implement npth_mutex_timedlock for inferior systems.
* configure.ac: Check for pthread_mutex_timedlock.
* src/npth.c (BUSY_WAIT_INTERVAL): New macro.
(npth_mutex_timedlock): If pthread_mutex_timedlock is missing,
use a poke-the-stick-at-it strategy.
2012-01-27 Werner Koch <wk@gnupg.org>
Include sys/select.h if needed.
* src/npth.h: Rename to npth.h.in. Include sys/select.h if
available. Add usual read-only comments.
* configure.ac: Create npth.h.
(INSERT_SYS_SELECT_N): New
(emacs_local_vars_read_only): New vars to support read-only switching.
Update config.guess and config.sub.
* config.guess, config.sub: Update to version 2012-01-01.
* autogen.sh: Fix typo.
Encapsulate clock_gettime.
* src/Makefile.am (libnpth_la_LDFLAGS): Remove -pthread and -lrt.
* src/npth.h (npth_clock_gettime): Turn macro into a function.
* src/npth.c (npth_clock_gettime): New.
* src/libnpth.vers: Add npth_clock_gettime.
Improve pthread library detection.
* configure.ac: Reorder some code. Improve pthread test to take libc
in account. Generate NPTH_CONFIG_LIBS from tests.
* src/npth-config.in: Use NPTH_CONFIG_LIBS.
* w32/npth-config.in: Ditto.
* tests/Makefile.am (AM_CPPFLAGS, AM_LDFLAGS): Don not pass -pthread.
2012-01-26 Werner Koch <wk@gnupg.org>
Remove unused include files from npth.h.
* src/npth.h: Remove unused poll.h and errno.h includes.
Make npth_{s,g}etname_np portable.
These functions are usually used for debugging. On systems where
they are not easy to support they will now simply return ENOSYS.
* configure.ac: Check for pthread_setname_np and pthread_getname_np.
* src/libnpth.vers: Add npth_setname_np and npth_getname_np.
* src/npth.c (npth_setname_np, npth_getname_np): New.
* src/npth.h (npth_setname_np, npth_getname_np): Turn macros into
functions.
Check for the non-portable pthread_tryjoin_np.
* configure.ac: Check for pthread_tryjoin_np. Also rework the pthread
test to update LIBS
* src/npth.c (npth_join) [HAVE_PTHREAD_TRYJOIN_NP]: Use
pthread_tryjoin_np only if available.
2012-01-25 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Fix thread startup.
* src/npth.c (npth_create): Fix startup data use.
2012-01-25 Werner Koch <wk@gnupg.org>
Include stdlib.h for malloc prototypes.
* src/npth.c: Include stdlib.h.
2012-01-24 Werner Koch <wk@gnupg.org>
Require gitlog-to-changelog to be installed.
* Makefile.am (gen-ChangeLog): Do no use included gitlog-to-changelog.
Use options --append-dot and --tear-off.
* build-aux/gitlog-to-changelog: Remove from repo.
2012-01-23 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Allow manually unprotect/protect calls.
* src/libnpth.vers (npth_unprotect, npth_protect): New symbols.
* src/npth.c (npth_unprotect, npth_protect): New functions.
* src/npth.h (npth_unprotect, npth_protect): New declaration.
* w32/npth.def (npth_unprotect, npth_protect): New exports.
* w32/npth.c (npth_unprotect, npth_protect): New functions.
* w32/npth.h (npth_unprotect, npth_protect): New declaration.
2012-01-19 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Allow no extra events in npth_eselect.
* w32/npth.c (npth_eselect): Allow events to be NULL.
Implement ability to wait on sockets and events.
* w32/npth.c (npth_eselect): New function.
* w32/npth.h (npth_eselect): New declaration.
* w32/npth.def (npth_eselect): New export.
Remove libnpth.vers dependency.
* w32/Makefile.am (libnpth_la_DEPENDENCIES): Remove libnpth.vers.
Release mutex temporarily on instant timeout in npth_cond_timedwait.
* w32/npth.c (npth_cond_timedwait): Release mutex temporarily even on
instant timeout.
2012-01-13 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Remove obsolete file.
* src/Makefile.am (EXTRA_DIST): Remove npth.def
* src/npth.def: Removed.
Initial support for w32.
* Makefile.am [HAVE_W32_SYSTEM]: Build from w32 directory.
* configure.ac: Don't check for pthread on windows. Add winsock
library on windows. Add w32 subdirectory to config files.
* w32/npth.h, w32/npth.c, w32/Makefile.am, w32/npth.def,
w32/npth-config.in, w32/npth.m4: New files.
* tests/Makefile.am: Allow building on w32.
Add missing function npth_system.
* src/npth.c (npth_system): New function.
2012-01-11 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Remove duplicated macro.
* npth.h (PTHREAD_RWLOCK_INITIALIZER): Remove.
Add some missing interfaces.
* npth.h (npth_key_delete, NPTH_ERRORCHECK_MUTEX_INITIALIZER_NP,
npth_rwlockattr_t, npth_rwlockattr_init, npth_rwlockattr_destroy,
npth_rwlockattr_gettype_np, npth_rwlockattr_settype_np,
NPTH_RWLOCK_PREFER_READER_NP, NPTH_RWLOCK_PREFER_WRITER_NP,
NPTH_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, NPTH_RWLOCK_DEFAULT_NP,
NPTH_RWLOCK_INITIALIZER, NPTH_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
New macros.
(NPTH_RWLOCK_INIT): Rename to ...
(NPTH_RWLOCK_INITIALIZER): ... this.
2012-01-06 Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de>
Fix exclusion logic at thread creation and allow main thread to exit.
* libnpth.vers (npth_create, npth_exit): New.
* npth.def (npth_create, npth_exit): Likewise.
* npth.h (npth_create): Change from macro to declaration.
(npth_exit): New declaration.
* npth.c (startup_s): New struct.
(thread_startup, npth_create, npth_exit): New functions.
2011-12-06 Werner Koch <wk@gnupg.org>
Create the ChangeLog from the git commit log.
* autogen.sh: Install git commit log checker.
* build-aux/git-hooks/commit-msg: New. Repo only.
* build-aux/git-log-fix: New. Repo only.
* build-aux/git-log-footer: New. Repo only.
* build-aux/gitlog-to-changelog: New. Repo only.
* HACKING: New.
* Makefile.am (gen-Changelog): New rule.
(dist-hook): Depend on gen-Changelog.
(EXTRA_DIST): Add HACKING.
* ChangeLog: New stub file.
2011-11-07 Marcus Brinkmann <marcus@g10code.com>
* src/npth.c (leave_npth): Loop over sem_wait on EINTR.
2011-10-26 Marcus Brinkmann <marcus@g10code.com>
* src/npth.h (npth_mutex_destroy): Add it.
(npth_join): Make it a proper function.
(_npth_mutex_lock, _npth_mutex_timedlock, _npth_rwlock_rdlock)
(_npth_rwlock_timedrdlock, _npth_rwlock_wrlock)
(_npth_rwlock_timedwrlock): Renamed to the variant without the
leading underscore. There was no reason to have the static
function wrappers.
* src/npth.c: Corresponding changes here.
* src/npth.def: Also here.
* src/libnpth.vers: Likewise.
2011-10-07 Marcus Brinkmann <marcus@g10code.com>
* src/npth.h (npth_mutexattr_t, npth_mutexattr_init)
(npth_mutexattr_destroy, npth_mutexattr_settype)
(npth_mutexattr_gettype, NPTH_MUTEX_NORMAL, NPTH_MUTEX_RECURSIVE)
(NPTH_MUTEX_ERRORCHECK, NPTH_MUTEX_DEFAULT): New.
* src/npth.c (npth_mutex_init): Removed.
* src/libnpth.vers: Remove npth_mutex_init.
* src/npth.def: Likewise. Add missing numbers.
* tests/t-mutex.c: Adjust to new interface.
2011-10-06 Marcus Brinkmann <marcus@g10code.com>
* Initial version.
-----
Copyright (C) 2011 g10 Code GmbH
Copying and distribution of this file and/or the original GIT
commit log messages, with or without modification, are
permitted provided the copyright notice and this notice are
preserved.
|