1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-02 16:01:20 +03:00
2003-09-20  Alfred M. Szmidt  <ams@kemisten.nu>

	* sysdeps/generic/utmp_file.c (setutent_file, LOCK_FILE,
	UNLOCK_FILE, setutent_file): Use fcntl_not_cancel instead of
	__fcntl_nocancel.
This commit is contained in:
Ulrich Drepper
2003-09-23 06:13:18 +00:00
parent 5d78bb4334
commit 6a8a852bcb
4 changed files with 19 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2003-09-18 H.J. Lu <hongjiu.lu@intel.com>
* attr.c (__pthread_attr_init_2_1): Double __guardsize size
if NEED_SEPARATE_REGISTER_STACK is defined.
2003-09-22 Philip Blundell <philb@gnu.org>
* forward.c: Add _pthread_cleanup_push, _pthread_cleanup_pop.

View File

@@ -36,7 +36,11 @@ int __pthread_attr_init_2_1(pthread_attr_t *attr)
attr->__schedparam.sched_priority = 0;
attr->__inheritsched = PTHREAD_EXPLICIT_SCHED;
attr->__scope = PTHREAD_SCOPE_SYSTEM;
#ifdef NEED_SEPARATE_REGISTER_STACK
attr->__guardsize = ps + ps;
#else
attr->__guardsize = ps;
#endif
attr->__stackaddr = NULL;
attr->__stackaddr_set = 0;
attr->__stacksize = STACK_SIZE - ps;