summaryrefslogtreecommitdiff
path: root/pthread_getschedparam.c
diff options
context:
space:
mode:
authorrpj <rpj>2003-08-12 05:33:15 +0000
committerrpj <rpj>2003-08-12 05:33:15 +0000
commit614c09bf607cf77c70c7435cd615c9f8b684bc5e (patch)
treede94124f8ff2044807be3a2dd856a55286948ea6 /pthread_getschedparam.c
parenta250b09c42f9a261da78ecec6226d722e27eea67 (diff)
Invalid thread param now returns ESRCH instead of EINVAL.
Diffstat (limited to 'pthread_getschedparam.c')
-rw-r--r--pthread_getschedparam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_getschedparam.c b/pthread_getschedparam.c
index e796a88..081bfe3 100644
--- a/pthread_getschedparam.c
+++ b/pthread_getschedparam.c
@@ -47,7 +47,7 @@ pthread_getschedparam(pthread_t thread, int *policy,
/* Validate the thread id. */
if (thread == NULL || thread->threadH == 0)
{
- return EINVAL;
+ return ESRCH;
}
/*