diff options
| author | Eric Andersen <andersen@codepoet.org> | 2001-11-14 07:34:46 +0000 | 
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2001-11-14 07:34:46 +0000 | 
| commit | 7ec11f7e1cd24b4c1051140cc412c20e210f1ee8 (patch) | |
| tree | 91a332ba854629d95c9e09095ad40eb516229b74 /libc/sysdeps/linux/m68k/bits/sigthread.h | |
| parent | 40f41cdcdbd34179b696a7466344524e2d0c0222 (diff) | |
| download | uClibc-alpine-7ec11f7e1cd24b4c1051140cc412c20e210f1ee8.tar.bz2 uClibc-alpine-7ec11f7e1cd24b4c1051140cc412c20e210f1ee8.tar.xz | |
Sync up m68k headers
Diffstat (limited to 'libc/sysdeps/linux/m68k/bits/sigthread.h')
| -rw-r--r-- | libc/sysdeps/linux/m68k/bits/sigthread.h | 15 | 
1 files changed, 6 insertions, 9 deletions
| diff --git a/libc/sysdeps/linux/m68k/bits/sigthread.h b/libc/sysdeps/linux/m68k/bits/sigthread.h index c213614be..b86e75f20 100644 --- a/libc/sysdeps/linux/m68k/bits/sigthread.h +++ b/libc/sysdeps/linux/m68k/bits/sigthread.h @@ -1,5 +1,5 @@  /* Signal handling function for threaded programs. -   Copyright (C) 1998 Free Software Foundation, Inc. +   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.     This file is part of the GNU C Library.     The GNU C Library is free software; you can redistribute it and/or @@ -17,25 +17,22 @@     write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,     Boston, MA 02111-1307, USA.  */ -#ifndef _BITS_SIGTHREAD_H  +#ifndef _BITS_SIGTHREAD_H  #define _BITS_SIGTHREAD_H	1  #if !defined _SIGNAL_H && !defined _PTHREAD_H  # error "Never include this file directly.  Use <pthread.h> instead"  #endif -__BEGIN_DECLS -  /* Functions for handling signals. */  /* Modify the signal mask for the calling thread.  The arguments have     the same meaning as for sigprocmask(2). */ -extern int pthread_sigmask __P ((int __how, __const __sigset_t *__newmask, -				 __sigset_t *__oldmask)); +extern int pthread_sigmask (int __how, +			    __const __sigset_t *__restrict __newmask, +			    __sigset_t *__restrict __oldmask)__THROW;  /* Send signal SIGNO to the given thread. */ -extern int pthread_kill __P ((pthread_t __thread, int __signo)); - -__END_DECLS +extern int pthread_kill (pthread_t __thread, int __signo) __THROW;  #endif	/* bits/sigthread.h */ | 
