mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
* modules/errno-h: Renamed from modules/errno. * modules/errno-h-tests: Renamed from modules/errno-tests. * modules/errno-h-c++-tests: Renamed from modules/errno-c++-tests. * tests/test-errno-h.c: Renamed from tests/test-errno.c. * tests/test-errno-h-c++.cc: Renamed from tests/test-errno-c++.cc. * tests/test-errno-h-c++2.cc: Renamed from tests/test-errno-c++2.cc. * doc/posix-headers/errno.texi: Update. * modules/* (Depends-on): Update. * modules/errno: New file.
32 lines
516 B
Plaintext
32 lines
516 B
Plaintext
Description:
|
|
Timed mutexes (native Windows implementation).
|
|
|
|
Files:
|
|
lib/windows-timedmutex.h
|
|
lib/windows-timedmutex.c
|
|
lib/windows-initguard.h
|
|
|
|
Depends-on:
|
|
errno-h
|
|
time-h
|
|
gettimeofday
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([AC_CANONICAL_HOST])
|
|
gl_CONDITIONAL([GL_COND_OBJ_WINDOWS_TIMEDMUTEX],
|
|
[case "$host_os" in mingw* | windows*) true;; *) false;; esac])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_WINDOWS_TIMEDMUTEX
|
|
lib_SOURCES += windows-timedmutex.c
|
|
endif
|
|
|
|
Include:
|
|
"windows-timedmutex.h"
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|