1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
/*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2014 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU General Public License, as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any
* later version. Please see the file LICENSE-GPL for details.
*
* Web Page: http://mielke.cc/brltty/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#include "prologue.h"
#include <string.h>
#include <errno.h>
#include "log.h"
#include "thread.h"
#include "async_signal.h"
#undef HAVE_THREAD_NAMES
#ifdef GOT_PTHREADS
typedef struct {
ThreadFunction *function;
void *argument;
char name[0];
} RunThreadArgument;
static void *
runThread (void *argument) {
RunThreadArgument *run = argument;
void *result;
setThreadName(run->name);
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "thread starting: %s", run->name);
result = run->function(run->argument);
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "thread finished: %s", run->name);
free(run);
return result;
}
typedef struct {
const char *const name;
pthread_t *const thread;
const pthread_attr_t *const attributes;
ThreadFunction *const function;
void *const argument;
int error;
} CreateThreadParameters;
static int
createActualThread (void *parameters) {
CreateThreadParameters *create = parameters;
RunThreadArgument *run;
if ((run = malloc(sizeof(*run) + strlen(create->name) + 1))) {
memset(run, 0, sizeof(*run));
run->function = create->function;
run->argument = create->argument;
strcpy(run->name, create->name);
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "creating thread: %s", create->name);
create->error = pthread_create(create->thread, create->attributes, runThread, run);
if (!create->error) return 1;
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "thread not created: %s: %s", create->name, strerror(create->error));
free(run);
} else {
create->error = errno;
logMallocError();
}
return 0;
}
#ifdef ASYNC_CAN_BLOCK_SIGNALS
ASYNC_WITH_SIGNALS_BLOCKED_FUNCTION(createSignalSafeThread) {
static const int signals[] = {
#ifdef SIGINT
SIGINT,
#endif /* SIGINT */
#ifdef SIGTERM
SIGTERM,
#endif /* SIGTERM */
#ifdef SIGCHLD
SIGCHLD,
#endif /* SIGCHLD */
0
};
CreateThreadParameters *create = data;
const int *signal = signals;
while (*signal) {
asyncSetSignalBlocked(*signal, 1);
signal += 1;
}
createActualThread(create);
}
#endif /* ASYNC_CAN_BLOCK_SIGNALS */
int
createThread (
const char *name,
pthread_t *thread, const pthread_attr_t *attributes,
ThreadFunction *function, void *argument
) {
CreateThreadParameters create = {
.name = name,
.thread = thread,
.attributes = attributes,
.function = function,
.argument = argument
};
#ifdef ASYNC_CAN_BLOCK_SIGNALS
asyncCallWithObtainableSignalsBlocked(createSignalSafeThread, &create);
#else /* ASYNC_CAN_BLOCK_SIGNALS */
createActualThread(&create);
#endif /* ASYNC_CAN_BLOCK_SIGNALS */
return create.error;
}
int
lockMutex (pthread_mutex_t *mutex) {
int result = pthread_mutex_lock(mutex);
logSymbol(LOG_CATEGORY(ASYNC_EVENTS), mutex, "mutex lock");
return result;
}
int
unlockMutex (pthread_mutex_t *mutex) {
logSymbol(LOG_CATEGORY(ASYNC_EVENTS), mutex, "mutex unlock");
return pthread_mutex_unlock(mutex);
}
#if defined(HAVE_PTHREAD_GETNAME_NP) && defined(__GLIBC__)
#define HAVE_THREAD_NAMES
size_t
formatThreadName (char *buffer, size_t size) {
int error = pthread_getname_np(pthread_self(), buffer, size);
return error? 0: strlen(buffer);
}
void
setThreadName (const char *name) {
pthread_setname_np(pthread_self(), name);
}
#elif defined(HAVE_PTHREAD_GETNAME_NP) && defined(__APPLE__)
#define HAVE_THREAD_NAMES
size_t
formatThreadName (char *buffer, size_t size) {
{
int error = pthread_getname_np(pthread_self(), buffer, size);
if (error) return 0;
if (*buffer) return strlen(buffer);
}
if (pthread_main_np()) {
size_t length;
STR_BEGIN(buffer, size);
STR_PRINTF("main");
length = STR_LENGTH;
STR_END;
return length;
}
return 0;
}
void
setThreadName (const char *name) {
pthread_setname_np(name);
}
#endif /* thread names */
#endif /* GOT_PTHREADS */
#ifndef HAVE_THREAD_NAMES
size_t
formatThreadName (char *buffer, size_t size) {
return 0;
}
void
setThreadName (const char *name) {
}
#endif /* HAVE_THREAD_NAMES */
|