diff options
Diffstat (limited to 'linuxthreads/pt-system.c')
-rw-r--r-- | linuxthreads/pt-system.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linuxthreads/pt-system.c b/linuxthreads/pt-system.c index 3a5f46c4f8..c3ed676f51 100644 --- a/linuxthreads/pt-system.c +++ b/linuxthreads/pt-system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2002. @@ -27,3 +27,6 @@ system (const char *line) { return __libc_system (line); } + +/* __libc_system in libc.so handles cancellation. */ +LIBC_CANCEL_HANDLED (); |