1
0
Fork 0
mirror of git://git.gnupg.org/npth.git synced 2025-12-05 22:37:20 +00:00
No description
Find a file
NIIBE Yutaka 59987e37a5
build: Avoid using -a for test(1).
* src/npth.m4: Use && in shell level, instead of -a of test.

--

GnuPG-bug-id: 7807
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
2025-09-25 11:27:12 +09:00
build-aux build: New configure option --with-libtool-modification. 2023-08-16 13:39:56 +09:00
m4 build: Remove unused m4/sys_socket_h.m4. 2021-12-22 09:35:56 +09:00
src New function npth_get_version and new version macros. 2024-11-12 11:46:10 +01:00
tests New function npth_get_version and new version macros. 2024-11-12 11:46:10 +01:00
w32 New function npth_get_version and new version macros. 2024-11-12 11:46:10 +01:00
.gitignore build: Let configure create the VERSION file. 2018-07-12 07:13:25 +09:00
AUTHORS New function npth_get_version and new version macros. 2024-11-12 11:46:10 +01:00
autogen.rc Use the generic autogen.sh script. 2014-01-10 15:56:11 +01:00
autogen.sh New function npth_get_version and new version macros. 2024-11-12 11:46:10 +01:00
ChangeLog Create the ChangeLog from the git commit log. 2011-12-06 11:37:19 +01:00
configure.ac Post release updates 2024-11-12 11:58:11 +01:00
COPYING.LIB Change license to LPGLv2+ 2017-05-16 09:37:14 +02:00
HACKING Change license to LPGLv2+ 2017-05-16 09:37:14 +02:00
INSTALL Initial commit. 2011-10-06 17:00:06 +02:00
Makefile.am Add a release build target 2024-02-23 11:03:05 +01:00
NEWS Post release updates 2024-11-12 11:58:11 +01:00
npth-config.in build: Compatibility to pkg-config. 2018-10-24 16:48:12 +09:00
npth.m4 build: Avoid using -a for test(1). 2025-09-25 11:27:12 +09:00
npth.pc.in build: Provide npth.pc, generated by configure. 2018-10-24 16:34:48 +09:00
npth.spec.in Change license to LPGLv2+ 2017-05-16 09:37:14 +02:00
README Change license to LPGLv2+ 2017-05-16 09:37:14 +02:00

             nPth - The New GNU Portable Threads Library

* Overview

  This is a library to provide the GNU Pth API and thus a
  non-preemptive threads implementation.

  In contrast to GNU Pth is is based on the system's standard threads
  implementation.  This allows the use of libraries which are not
  compatible to GNU Pth.  Experience with a Windows Pth emulation
  showed that this is a solid way to provide a co-routine based
  framework.

  See the file AUTHORS for contact and copyright information.

* License

  nPth is released under the LGPLv2+ license.

* Porting hints

  Documentation is currently missing.  If you are using GNU Pth you
  should be able to understand the API.  Given that GNU Pth is rarely
  used, we hestitate to spend work on a migration guide.  If you have
  questions, please ask on gnupg-devel.  Here are some hints:

  - Pth mutexes are recursive, that is they will not block if called
    by the same thread.  In contrast, nPth mutexes are not recursive;
    it is best to change your code to avoid recursive use of mutexes.
    nPth uses non-recursive mutexes for performance reasons.