diff options
author | Christopher Faylor <cgf@redhat.com> | 2004-01-19 05:38:23 +0000 |
---|---|---|
committer | Christopher Faylor <cgf@redhat.com> | 2004-01-19 05:38:23 +0000 |
commit | 3c9c611960b37619593fbb52594323cc6bc56799 (patch) | |
tree | 860b3097c01110cbea02c3985914c01abfd06069 /winsup/cygwin/Makefile.in | |
parent | 825299b5da84c01b16d9d1ebda9320056b4117f2 (diff) | |
download | gdb-3c9c611960b37619593fbb52594323cc6bc56799.tar.gz |
* cygwin/include/signal.h: Add copyright notice.
* cygwin.din: Make clock SIGFE. Add clock_gettime, sigwaitinfo, timer_create,
timer_delete, timer_settime.
* include/cygwin/version.h: Reflect above additions.
* fork.cc (fork_child): Call fixup_timers_after_fork.
* signal.cc (sigwait): Remove unused variable.
* timer.cc: New file.
(clock_gettime): Define new function.
(timer_tracker): Define new struct used by timer functions.
(timer_tracker::timer_tracker): New function.
(to_us): New function.
(timer_thread): New function.
(timer_tracker::settime): New function.
(timer_create): New function.
(timer_settime): New function.
(timer_delete): New function.
(fixup_timers_after_fork): New function.
* cygthread.cc: Bump thread count.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index cf15b320d28..5cd0938f49d 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -134,7 +134,7 @@ DLL_OFILES:=assert.o autoload.o bsdlib.o cxx.o cygheap.o cygthread.o cygtls.o \ resource.o scandir.o sched.o sec_acl.o sec_helper.o security.o \ select.o sem.o shared.o shm.o sigfe.o signal.o sigproc.o smallprint.o \ spawn.o strace.o strsep.o sync.o syscalls.o sysconf.o syslog.o \ - termios.o thread.o times.o tty.o uinfo.o uname.o v8_regexp.o \ + termios.o thread.o timer.o times.o tty.o uinfo.o uname.o v8_regexp.o \ v8_regerror.o v8_regsub.o wait.o wincap.o window.o \ $(EXTRA_DLL_OFILES) $(EXTRA_OFILES) $(MALLOC_OFILES) $(MT_SAFE_OBJECTS) |