diff options
| author | cl <cl@NetBSD.org> | 2004-01-02 18:56:39 +0000 |
|---|---|---|
| committer | cl <cl@NetBSD.org> | 2004-01-02 18:56:39 +0000 |
| commit | 90e89977d42b5fc2ff53d911a4056c41b7118368 (patch) | |
| tree | fda99f763fad665588fd05d6c69e28f2bbfb6f9f /lib/libpthread | |
| parent | d5645dec8e267911a831b76eb56b87ae8af4c2db (diff) | |
- libc.so.12.109 and libpthread.so.0.4
- add ssize_t stackinfo_offset argument to sa_register syscall
- remove sa_unblockyield syscall
- make __sigprocmask14 syscall weak
- in pthread__sa_start: catch up with 4-argument sa_register syscall
Diffstat (limited to 'lib/libpthread')
| -rw-r--r-- | lib/libpthread/pthread_sa.c | 6 | ||||
| -rw-r--r-- | lib/libpthread/shlib_version | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libpthread/pthread_sa.c b/lib/libpthread/pthread_sa.c index 8f6830dc67c..dbb23b7d162 100644 --- a/lib/libpthread/pthread_sa.c +++ b/lib/libpthread/pthread_sa.c @@ -1,4 +1,4 @@ -/* $NetBSD: pthread_sa.c,v 1.24 2004/01/02 14:29:22 cl Exp $ */ +/* $NetBSD: pthread_sa.c,v 1.25 2004/01/02 18:56:39 cl Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: pthread_sa.c,v 1.24 2004/01/02 14:29:22 cl Exp $"); +__RCSID("$NetBSD: pthread_sa.c,v 1.25 2004/01/02 18:56:39 cl Exp $"); #include <err.h> #include <errno.h> @@ -721,7 +721,7 @@ pthread__sa_start(void) if (value) rr = atoi(value); - ret = sa_register(pthread__upcall, NULL, flags); + ret = sa_register(pthread__upcall, NULL, flags, 0); if (ret) { if (errno == ENOSYS) errx(1, diff --git a/lib/libpthread/shlib_version b/lib/libpthread/shlib_version index 2476859be34..f2583944809 100644 --- a/lib/libpthread/shlib_version +++ b/lib/libpthread/shlib_version @@ -1,5 +1,5 @@ -# $NetBSD: shlib_version,v 1.5 2003/11/18 01:00:19 thorpej Exp $ +# $NetBSD: shlib_version,v 1.6 2004/01/02 19:09:48 cl Exp $ # Remember to update distrib/sets/lists/base/shl.* when changing # major=0 -minor=3 +minor=4 |
