diff options
| author | ad <ad@NetBSD.org> | 2007-02-09 22:54:19 +0000 |
|---|---|---|
| committer | ad <ad@NetBSD.org> | 2007-02-09 22:54:19 +0000 |
| commit | f8e00f41e672a219d23a7f41ad69cf2f7b623671 (patch) | |
| tree | b2be5658a4206496bf39d559d386c5f0fa4592b6 /include | |
| parent | 6cb2f27bc75d2ff984d042149946efea37278e72 (diff) | |
Change _lwp_unpark_all() to return a 'ssize_t'.
Diffstat (limited to 'include')
| -rw-r--r-- | include/lwp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lwp.h b/include/lwp.h index 32dcb16d5f2..a16800aab12 100644 --- a/include/lwp.h +++ b/include/lwp.h @@ -1,4 +1,4 @@ -/* $NetBSD: lwp.h,v 1.5 2007/01/16 01:36:50 ad Exp $ */ +/* $NetBSD: lwp.h,v 1.6 2007/02/09 22:54:19 ad Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -60,7 +60,7 @@ int _lwp_kill(lwpid_t, int); int _lwp_detach(lwpid_t); int _lwp_park(const struct timespec *, ucontext_t *, const void *); int _lwp_unpark(lwpid_t, const void *); -int _lwp_unpark_all(const lwpid_t *, size_t, const void *); +ssize_t _lwp_unpark_all(const lwpid_t *, size_t, const void *); __END_DECLS #endif /* !_LWP_H_ */ |
