summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/speclib
Commit message (Collapse)AuthorAgeFilesLines
* * speclib: Use correct EOF marker. Ensure that directory is actually deletedChristopher Faylor2003-11-281-2/+2
| | | | when running under Windows.
* * specdir: Correctly remove temporary directory prior to use.Christopher Faylor2003-08-271-1/+1
|
* * speclib: Reenable removal of temp files.Christopher Faylor2003-08-211-1/+1
|
* * speclib: Fix created lib to avoid "File truncated" problems.Christopher Faylor2003-08-211-0/+13
|
* Throughout, eliminate argument to sig_dispatch_pending.Christopher Faylor2003-08-191-2/+2
| | | | | | | | | | | | | | | | | * exceptions.cc (setup_handler): Move non-interruptible condition handling (back) to wait_sig (as suggested by Pierre Humblet). (set_process_mask): Don't worry about calling sig_dispatch_pending from sigthread since it is detected in the function anyway. (sig_handle): Eliminate thisproc arg. Don't call sig_dispatch_pending on SIGCONT since that should happen automatically. * sigproc.cc (sig_dispatch_pending): Eliminate justwake argument. Just return when called from sigthread. (wait_sig): Change some variables to bool. Change inner while to an if. Move uninterruptible signal handling here. (sigproc_terminate): Don't call sig_dispatch_pending. Just increment semaphore on exit. * speclib: Use slightly different (but still flawed) method for determining symbols to extract from libraries.
* * Makefile.in: Rework to accommodate new speclib arguments.Christopher Faylor2003-08-061-9/+25
| | | | | * speclib: Rework to extract everything from libcygwin.a rather than building things from existing object files.
* * speclib: Ensure that temporary def file is removed.Christopher Faylor2002-01-241-1/+1
|
* * speclib: Use rm -f to remove temp file just to quiet any potential warnings.Christopher Faylor2002-01-231-1/+1
|
* * Makefile.in (libpthread.a): Pass the assembler also.Christopher Faylor2002-01-221-1/+2
| | | | | | (libm.a): Ditto. (libc.a): Ditto. * speclib: Specify the assembler to dlltool.
* * speclib: Don't use /dev/null as DLL name. Just default to what's already inChristopher Faylor2002-01-211-1/+1
| | | | | | .def file. * exceptions.cc (sig_handle): Remove last vestiges of SA_NOCLDSTOP code which caused SIGCHLD to be ignored.
* Add copyright stuffChristopher Faylor2002-01-131-0/+10
|
* * speclib: Remove temp files automatically.Christopher Faylor2002-01-021-1/+1
|
* * speclib: New file.Christopher Faylor2001-12-311-0/+12
* Makefile.in: Create library versions of automode.o, textmode.o, and binmode.o for easier use on command line. Create libpthread.a, libm.a, and libc.a with subsets of exports found in libcygwin.a.