]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libkse/thread/thr_resume_np.c
WARNS=3'ify.
[FreeBSD/FreeBSD.git] / lib / libkse / thread / thr_resume_np.c
1 /*
2  * Copyright (c) 1995 John Birrell <jb@cimlogic.com.au>.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31
32 #include "namespace.h"
33 #include <errno.h>
34 #include <pthread.h>
35 #include "un-namespace.h"
36 #include "thr_private.h"
37
38 int     _pthread_resume_np(pthread_t thread);
39 void    _pthread_resume_all_np(void);
40
41 static struct kse_mailbox *resume_common(struct pthread *);
42
43 LT10_COMPAT_PRIVATE(_pthread_resume_np);
44 LT10_COMPAT_DEFAULT(pthread_resume_np);
45 LT10_COMPAT_PRIVATE(_pthread_resume_all_np);
46 LT10_COMPAT_DEFAULT(pthread_resume_all_np);
47
48 __weak_reference(_pthread_resume_np, pthread_resume_np);
49 __weak_reference(_pthread_resume_all_np, pthread_resume_all_np);
50
51
52 /* Resume a thread: */
53 int
54 _pthread_resume_np(pthread_t thread)
55 {
56         struct pthread *curthread = _get_curthread();
57         struct kse_mailbox *kmbx;
58         int ret;
59
60         /* Add a reference to the thread: */
61         if ((ret = _thr_ref_add(curthread, thread, /*include dead*/0)) == 0) {
62                 /* Lock the threads scheduling queue: */
63                 THR_SCHED_LOCK(curthread, thread);
64                 kmbx = resume_common(thread);
65                 THR_SCHED_UNLOCK(curthread, thread);
66                 _thr_ref_delete(curthread, thread);
67                 if (kmbx != NULL)
68                         kse_wakeup(kmbx);
69         }
70         return (ret);
71 }
72
73 void
74 _pthread_resume_all_np(void)
75 {
76         struct pthread *curthread = _get_curthread();
77         struct pthread *thread;
78         struct kse_mailbox *kmbx;
79         kse_critical_t crit;
80
81         /* Take the thread list lock: */
82         crit = _kse_critical_enter();
83         KSE_LOCK_ACQUIRE(curthread->kse, &_thread_list_lock);
84
85         TAILQ_FOREACH(thread, &_thread_list, tle) {
86                 if (thread != curthread) {
87                         THR_SCHED_LOCK(curthread, thread);
88                         kmbx = resume_common(thread);
89                         THR_SCHED_UNLOCK(curthread, thread);
90                         if (kmbx != NULL)
91                                 kse_wakeup(kmbx);
92                 }
93         }
94
95         /* Release the thread list lock: */
96         KSE_LOCK_RELEASE(curthread->kse, &_thread_list_lock);
97         _kse_critical_leave(crit);
98 }
99
100 static struct kse_mailbox *
101 resume_common(struct pthread *thread)
102 {
103         /* Clear the suspend flag: */
104         thread->flags &= ~THR_FLAGS_SUSPENDED;
105
106         /*
107          * If the thread's state is suspended, that means it is
108          * now runnable but not in any scheduling queue.  Set the
109          * state to running and insert it into the run queue.
110          */
111         if (thread->state == PS_SUSPENDED)
112                 return (_thr_setrunnable_unlocked(thread));
113         else
114                 return (NULL);
115 }