summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-23 14:57:49 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-23 14:57:49 +0000
commit7b5700771373c3487306cf2054501448769c6160 (patch)
treede0a52fa08b4d077baaa69d8a5f47070ac0d9581 /libpthread
parentba9a21b2fa45a29a9e3dff6e0b199d8da5059811 (diff)
Add some attribute_noreturn, replace __attribute__ ((noreturn)) as well
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads.old/manager.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/linuxthreads.old/manager.c b/libpthread/linuxthreads.old/manager.c
index 81ab0d336..b4938aaca 100644
--- a/libpthread/linuxthreads.old/manager.c
+++ b/libpthread/linuxthreads.old/manager.c
@@ -106,13 +106,13 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
int report_events,
td_thr_events_t *event_maskp);
static void pthread_handle_free(pthread_t th_id);
-static void pthread_handle_exit(pthread_descr issuing_thread, int exitcode);
+static void pthread_handle_exit(pthread_descr issuing_thread, int exitcode) attribute_noreturn;
static void pthread_reap_children(void);
static void pthread_kill_all_threads(int sig, int main_thread_also);
/* The server thread managing requests for thread creation and termination */
-int __pthread_manager(void *arg)
+int attribute_noreturn __pthread_manager(void *arg)
{
int reqfd = (int) (long int) arg;
#ifdef USE_SELECT
@@ -269,7 +269,7 @@ int __pthread_manager_event(void *arg)
/* Process creation */
static int
-__attribute__ ((noreturn))
+attribute_noreturn
pthread_start_thread(void *arg)
{
pthread_descr self = (pthread_descr) arg;
@@ -317,7 +317,7 @@ pthread_start_thread(void *arg)
}
static int
-__attribute__ ((noreturn))
+attribute_noreturn
pthread_start_thread_event(void *arg)
{
pthread_descr self = (pthread_descr) arg;