From 90d1bd0020b7a0db396a39fbb57a6ec4d061418e Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 15 Jan 2004 16:09:58 +0000 Subject: Return ENOTSUP instead of -1. --- lib/libthr/thread/thr_suspend_np.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libthr') diff --git a/lib/libthr/thread/thr_suspend_np.c b/lib/libthr/thread/thr_suspend_np.c index 7fa668d..de95735 100644 --- a/lib/libthr/thread/thr_suspend_np.c +++ b/lib/libthr/thread/thr_suspend_np.c @@ -43,7 +43,7 @@ int _pthread_suspend_np(pthread_t thread) { /* XXXTHR */ - return (-1); + return (ENOTSUP); } void -- cgit v1.1