mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-05 19:35:52 +03:00
* sysdeps/generic/bits/sigthread.h: Clean up conditionals.
Declare pthread_sigmask. * csu/version.c: Add 2000 to copyright years. Remove Emacs local variables section.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2000-03-28 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/bits/sigthread.h: Clean up conditionals.
|
||||||
|
Declare pthread_sigmask.
|
||||||
|
|
||||||
|
* csu/version.c: Add 2000 to copyright years.
|
||||||
|
Remove Emacs local variables section.
|
||||||
|
|
||||||
2000-03-23 Bruno Haible <haible@clisp.cons.org>
|
2000-03-23 Bruno Haible <haible@clisp.cons.org>
|
||||||
|
|
||||||
* iconv/gconv_int.h (__gconv_transform_ucs2little_internal,
|
* iconv/gconv_int.h (__gconv_transform_ucs2little_internal,
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Signal handling function for threaded programs.
|
/* Signal handling function for threaded programs. Generic version.
|
||||||
Copyright (C) 1998 Free Software Foundation, Inc.
|
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@@ -17,8 +17,19 @@
|
|||||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef _SIGNAL_H
|
#ifndef _BITS_SIGTHREAD_H
|
||||||
# error "Never include this file directly. Use <signal.h> instead"
|
#define _BITS_SIGTHREAD_H 1
|
||||||
|
|
||||||
|
#if !defined _SIGNAL_H && !defined _PTHREAD_H
|
||||||
|
# error "Never include this file directly. Use <pthread.h> instead"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* There are none available in this configuration. */
|
/* Modify the signal mask for the calling thread. The arguments have the
|
||||||
|
same meaning as for sigprocmask; in fact, this and sigprocmask might be
|
||||||
|
the same function. We declare this the same on all platforms, since it
|
||||||
|
doesn't use any thread-related types. */
|
||||||
|
extern int pthread_sigmask (int __how, __const __sigset_t *__newmask,
|
||||||
|
__sigset_t *__oldmask) __THROW;
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* bits/sigthread.h */
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* Signal handling function for threaded programs.
|
/* Signal handling function for threaded programs. Generic version.
|
||||||
Copyright (C) 1998 Free Software Foundation, Inc.
|
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@@ -17,8 +17,19 @@
|
|||||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef _SIGNAL_H
|
#ifndef _BITS_SIGTHREAD_H
|
||||||
# error "Never include this file directly. Use <signal.h> instead"
|
#define _BITS_SIGTHREAD_H 1
|
||||||
|
|
||||||
|
#if !defined _SIGNAL_H && !defined _PTHREAD_H
|
||||||
|
# error "Never include this file directly. Use <pthread.h> instead"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* There are none available in this configuration. */
|
/* Modify the signal mask for the calling thread. The arguments have the
|
||||||
|
same meaning as for sigprocmask; in fact, this and sigprocmask might be
|
||||||
|
the same function. We declare this the same on all platforms, since it
|
||||||
|
doesn't use any thread-related types. */
|
||||||
|
extern int pthread_sigmask (int __how, __const __sigset_t *__newmask,
|
||||||
|
__sigset_t *__oldmask) __THROW;
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* bits/sigthread.h */
|
||||||
|
Reference in New Issue
Block a user