Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2003-06-17  Ulrich Drepper  <drepper@redhat.com>

	* tst-cancel4.c: Add tests for the socket and signal functions, pause.
	Also test early cancellation before the thread reaches the cancellation
	point.

	* Makefile: Compile forward.c with exceptions.

	* sysdeps/unix/sysv/linux/sleep.c: New file.
  • Loading branch information
Ulrich Drepper committed Jun 17, 2003
1 parent f60db8e commit 2667645
Show file tree
Hide file tree
Showing 4 changed files with 1,124 additions and 120 deletions.
10 changes: 10 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2003-06-17 Ulrich Drepper <drepper@redhat.com>

* tst-cancel4.c: Add tests for the socket and signal functions, pause.
Also test early cancellation before the thread reaches the cancellation
point.

* Makefile: Compile forward.c with exceptions.

* sysdeps/unix/sysv/linux/sleep.c: New file.

2003-06-16 Ulrich Drepper <drepper@redhat.com>

* Makefile: Add CFLAGS definition to compile function wrappers
Expand Down
4 changes: 4 additions & 0 deletions nptl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ CFLAGS-libc-cancellation.c = -fasynchronous-unwind-tables
# function.
CFLAGS-pthread_exit.c = -fexceptions

# Among others, __pthread_unwind is forwarded. This function must handle
# exceptions.
CFLAGS-forward.c = -fexceptions

# The following are cancellation points. Some of the functions can
# block and therefore temporarily enable asynchronous cancellation.
# Those must be compiled asynchronous unwind tables.
Expand Down
2 changes: 2 additions & 0 deletions nptl/sysdeps/unix/sysv/linux/sleep.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#include <nptl/pthreadP.h>
#include <sysdeps/unix/sysv/linux/sleep.c>
Loading

0 comments on commit 2667645

Please sign in to comment.