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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
Description: userspace implementation of pthread_workqueue library
This patch contains the main body of libpthread_workqueue as published
here:
.
svn+ssh://heily.com/home/mheily/svn/libpthread_workqueue/trunk
.
Author: Mark Heily <mark@heily.com>
Index: libdispatch-0~svn188/configure.ac
===================================================================
--- libdispatch-0~svn188.orig/configure.ac 2010-07-01 21:10:40.000000000 -0400
+++ libdispatch-0~svn188/configure.ac 2010-07-10 21:29:45.000000000 -0400
@@ -173,13 +173,7 @@
)
AM_CONDITIONAL(USE_MIG, $have_mach)
-#
-# We use the availability of pthread_workqueue.h to decide whether to compile
-# in support for pthread work queues.
-#
-AC_CHECK_HEADER([pthread_workqueue.h],
- [AC_DEFINE(HAVE_PTHREAD_WORKQUEUES, 1,Define if pthread work queues are present)]
-)
+AC_DEFINE(HAVE_PTHREAD_WORKQUEUES, 1,Define if pthread work queues are present)
#
# Find functions and declarations we care about.
Index: libdispatch-0~svn188/src/Makefile.am
===================================================================
--- libdispatch-0~svn188.orig/src/Makefile.am 2010-07-01 21:10:39.000000000 -0400
+++ libdispatch-0~svn188/src/Makefile.am 2010-07-10 21:14:34.000000000 -0400
@@ -19,6 +19,7 @@
libshims_la_SOURCES= \
shims/mach.c \
+ shims/pthread_workqueue.c \
shims/time.c \
shims/tsd.c
Index: libdispatch-0~svn188/src/shims/pthread_workqueue.c
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ libdispatch-0~svn188/src/shims/pthread_workqueue.c 2010-07-10 21:30:38.000000000 -0400
@@ -0,0 +1,380 @@
+/*-
+ * Copyright (c) 2010, Mark Heily <mark@heily.com>
+ * Copyright (c) 2009, Stacey Son <sson@freebsd.org>
+ * Copyright (c) 2000-2008, Apple Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice unmodified, this list of conditions, and the following
+ * disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+
+#include <errno.h>
+#include <pthread.h>
+#include <signal.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <sys/queue.h>
+#include <unistd.h>
+
+#include "pthread_workqueue.h"
+
+#ifdef PTHREAD_WORKQUEUE_DEBUG
+# define dbg_puts(str) fprintf(stderr, "%s(): %s\n", __func__,str)
+# define dbg_printf(fmt,...) fprintf(stderr, "%s(): "fmt"\n", __func__,__VA_ARGS__)
+# define dbg_perror(str) fprintf(stderr, "%s(): %s: %s\n", __func__,str, strerror(errno))
+#else
+# define dbg_puts(str) ;
+# define dbg_printf(fmt,...) ;
+# define dbg_perror(str) ;
+#endif
+
+#define WORKQUEUE_MAX 512 /* DEADWOOD */
+#define WORKER_MAX 512 /* Maximum # of worker threads */
+
+/* Signatures/magic numbers. */
+#define PTHREAD_WORKQUEUE_SIG 0xBEBEBEBE
+#define PTHREAD_WORKQUEUE_ATTR_SIG 0xBEBEBEBE
+
+struct work {
+ STAILQ_ENTRY(work) item_entry;
+ void (*func)(void *);
+ void *func_arg;
+ unsigned int flags;
+ unsigned int gencount;
+};
+
+struct worker {
+ unsigned int id; /* Index within the workers struct */
+ pthread_t tid;
+ time_t start_time; /* Time that work started, or 0 if idle */
+ int overcommit;
+ unsigned int flags;
+};
+
+struct _pthread_workqueue {
+ unsigned int sig; /* Unique signature for this structure */
+ unsigned int flags;
+ int queueprio;
+ int overcommit;
+ LIST_ENTRY(_pthread_workqueue) wqlist_entry;
+ STAILQ_HEAD(,work) item_listhead;
+ pthread_spinlock_t mtx;
+};
+
+static struct worker workers[WORKER_MAX];
+static unsigned int worker_max,
+ worker_min,
+ worker_cnt;
+
+/* A list of workqueues, sorted by priority */
+static LIST_HEAD(, _pthread_workqueue) wqlist;
+static pthread_mutex_t wqlist_mtx;
+static pthread_cond_t wqlist_has_work;
+
+/* The caller must hold the wqlist_mtx. */
+static struct work *
+wqlist_scan(void)
+{
+ pthread_workqueue_t workq;
+ struct work *witem;
+
+ LIST_FOREACH(workq, &wqlist, wqlist_entry) {
+ if (STAILQ_EMPTY(&workq->item_listhead))
+ continue;
+ pthread_mutex_unlock(&wqlist_mtx);
+
+ pthread_spin_lock(&workq->mtx);
+ witem = STAILQ_FIRST(&workq->item_listhead);
+ if (witem != NULL)
+ STAILQ_REMOVE_HEAD(&workq->item_listhead, item_entry);
+ pthread_spin_unlock(&workq->mtx);
+ return (witem);
+ }
+
+ return (NULL);
+}
+
+static void *
+worker_main(void *arg)
+{
+ struct worker *self = (struct worker *) arg;
+ struct work *witem;
+
+ for (;;) {
+ pthread_mutex_lock(&wqlist_mtx);
+ witem = wqlist_scan();
+ if (witem == NULL)
+ do {
+ dbg_printf("worker %u waiting for work", self->id);
+ pthread_cond_wait(&wqlist_has_work, &wqlist_mtx);
+ witem = wqlist_scan();
+ } while (witem == NULL);
+
+ /* Invoke the callback function */
+ self->start_time = time(NULL);
+ witem->func(witem->func_arg);
+ self->start_time = 0;
+ free(witem);
+
+ dbg_printf("worker %u finished work", self->id);
+ }
+ /* NOTREACHED */
+ return (NULL);
+}
+
+static void
+worker_start(struct worker *wkr, int flags)
+{
+ wkr->start_time = 0;
+ wkr->id = wkr - &workers[0];
+ wkr->flags = flags;
+ pthread_create(&wkr->tid, NULL, worker_main, wkr);
+ dbg_printf("created a new worker (id=%d)", wkr->id);
+}
+
+static void *
+wq_manager(void *arg)
+{
+ int i, all_busy;
+ sigset_t sigmask;
+
+ /* Block all signals */
+ sigfillset (&sigmask);
+ pthread_sigmask(SIG_BLOCK, &sigmask, NULL);
+
+ for (;;) {
+ /* Start a new thread if all workers are busy */
+ all_busy = 1;
+ for (i = 0; i < worker_cnt; i++) {
+ if (workers[i].start_time == 0) {
+ all_busy = 0;
+ break;
+ }
+ }
+ if (all_busy) {
+ if (worker_cnt < worker_max)
+ worker_start(&workers[worker_cnt++], 0);
+ }
+
+ dbg_printf("%d workers (max: %d); all_busy=%d",
+ worker_cnt,
+ worker_max,
+ all_busy);
+
+ sleep(1);
+ }
+
+ /*NOTREACHED*/
+ return (NULL);
+}
+
+static void
+wq_init(void)
+{
+ pthread_t tid;
+
+ worker_cnt = 0;
+ worker_min = sysconf(_SC_NPROCESSORS_ONLN) * 2;
+ worker_max = sysconf(_SC_NPROCESSORS_ONLN) * 10;
+
+ /* Create the minimum number of threads */
+ for (worker_cnt = 0; worker_cnt < worker_min; worker_cnt++)
+ worker_start(&workers[worker_cnt], 0);
+
+ while (pthread_create(&tid, NULL, wq_manager, NULL) != 0) {
+ sleep(2);
+ }
+}
+
+static int
+valid_workq(pthread_workqueue_t workq)
+{
+ if (workq->sig == PTHREAD_WORKQUEUE_SIG)
+ return (1);
+ else
+ return (0);
+}
+
+/*
+ * Public API
+ */
+
+int
+pthread_workqueue_init_np(void)
+{
+ static pthread_once_t once_control = PTHREAD_ONCE_INIT;
+
+ pthread_once(&once_control, wq_init);
+ return (0);
+}
+
+int
+pthread_workqueue_create_np(pthread_workqueue_t *workqp,
+ const pthread_workqueue_attr_t * attr)
+{
+ pthread_workqueue_t workq;
+ pthread_workqueue_t cur;
+
+ if ((attr != NULL) && (attr->sig != PTHREAD_WORKQUEUE_ATTR_SIG))
+ return (EINVAL);
+ if ((workq = calloc(1, sizeof(*workq))) == NULL)
+ return (ENOMEM);
+ workq->sig = PTHREAD_WORKQUEUE_SIG;
+ workq->flags = 0;
+ STAILQ_INIT(&workq->item_listhead);
+ if (attr == NULL) {
+ workq->queueprio = 1;
+ workq->overcommit = 0;
+ } else {
+ workq->queueprio = attr->queueprio;
+ workq->overcommit = attr->overcommit;
+ }
+ pthread_spin_init(&workq->mtx, PTHREAD_PROCESS_PRIVATE);
+
+ pthread_mutex_lock(&wqlist_mtx);
+ LIST_FOREACH(cur, &wqlist, wqlist_entry) {
+ if (cur->queueprio <= workq->queueprio)
+ break;
+ }
+ if (cur == NULL)
+ LIST_INSERT_HEAD(&wqlist, workq, wqlist_entry);
+ else
+ LIST_INSERT_AFTER(cur, workq, wqlist_entry);
+ pthread_mutex_unlock(&wqlist_mtx);
+
+ *workqp = workq;
+ return (0);
+}
+
+int
+pthread_workqueue_additem_np(pthread_workqueue_t workq,
+ void (*workitem_func)(void *), void * workitem_arg,
+ pthread_workitem_handle_t * itemhandlep,
+ unsigned int *gencountp)
+{
+ struct work *witem;
+
+ if (valid_workq(workq) == 0)
+ return (EINVAL);
+
+ /* TODO: Keep a free list to avoid frequent malloc/free() penalty */
+ witem = malloc(sizeof(*witem));
+ if (witem == NULL)
+ return (ENOMEM);
+ witem->gencount = 0;
+ witem->func = workitem_func;
+ witem->func_arg = workitem_arg;
+ witem->flags = 0;
+ witem->item_entry.stqe_next = 0;
+
+ pthread_spin_lock(&workq->mtx);
+#if TODO
+ if ((workq->flags &
+ (PTHREAD_WORKQ_IN_TERMINATE | PTHREAD_WORKQ_DESTROYED)) != 0) {
+ pthread_spin_unlock(&workq->mtx);
+ free(witem);
+ *itemhandlep = 0;
+ return (ESRCH);
+ }
+#endif //TODO
+ STAILQ_INSERT_TAIL(&workq->item_listhead, witem, item_entry);
+ pthread_spin_unlock(&workq->mtx);
+ pthread_cond_signal(&wqlist_has_work);
+
+ if (itemhandlep != NULL)
+ *itemhandlep = (pthread_workitem_handle_t *) witem;
+ if (gencountp != NULL)
+ *gencountp = witem->gencount;
+
+ dbg_printf("added an item to queue %p", workq);
+
+ return (0);
+}
+
+int
+pthread_workqueue_attr_init_np(pthread_workqueue_attr_t *attr)
+{
+ attr->queueprio = WORKQ_DEFAULT_PRIOQUEUE;
+ attr->sig = PTHREAD_WORKQUEUE_ATTR_SIG;
+ attr->overcommit = 0;
+ return (0);
+}
+
+int
+pthread_workqueue_attr_destroy_np(pthread_workqueue_attr_t *attr)
+{
+ if (attr->sig == PTHREAD_WORKQUEUE_ATTR_SIG)
+ return (0);
+ else
+ return (EINVAL); /* Not an attribute struct. */
+}
+
+int
+pthread_workqueue_attr_getovercommit_np(
+ const pthread_workqueue_attr_t *attr, int *ocommp)
+{
+ if (attr->sig == PTHREAD_WORKQUEUE_ATTR_SIG) {
+ *ocommp = attr->overcommit;
+ return (0);
+ } else
+ return (EINVAL); /* Not an attribute struct. */
+}
+
+int
+pthread_workqueue_attr_setovercommit_np(pthread_workqueue_attr_t *attr,
+ int ocomm)
+{
+ if (attr->sig == PTHREAD_WORKQUEUE_ATTR_SIG) {
+ attr->overcommit = ocomm;
+ return (0);
+ } else
+ return (EINVAL);
+}
+
+int
+pthread_workqueue_attr_getqueuepriority_np(
+ pthread_workqueue_attr_t *attr, int *qpriop)
+{
+ if (attr->sig == PTHREAD_WORKQUEUE_ATTR_SIG) {
+ *qpriop = attr->queueprio;
+ return (0);
+ } else
+ return (EINVAL);
+}
+
+int
+pthread_workqueue_attr_setqueuepriority_np(
+ pthread_workqueue_attr_t *attr, int qprio)
+{
+ if (attr->sig == PTHREAD_WORKQUEUE_ATTR_SIG) {
+ switch(qprio) {
+ case WORKQ_HIGH_PRIOQUEUE:
+ case WORKQ_DEFAULT_PRIOQUEUE:
+ case WORKQ_LOW_PRIOQUEUE:
+ attr->queueprio = qprio;
+ return (0);
+ default:
+ return (EINVAL);
+ }
+ } else
+ return (EINVAL);
+}
Index: libdispatch-0~svn188/src/shims/pthread_workqueue.h
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ libdispatch-0~svn188/src/shims/pthread_workqueue.h 2010-07-10 21:30:20.000000000 -0400
@@ -0,0 +1,80 @@
+/*-
+ * Copyright (c) 2010, Mark Heily <mark@heily.com>
+ * Copyright (c) 2009, Stacey Son <sson@freebsd.org>
+ * Copyright (c) 2000-2008, Apple Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice unmodified, this list of conditions, and the following
+ * disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+
+#ifndef _PTHREAD_WORKQUEUE_H
+#define _PTHREAD_WORKQUEUE_H
+
+#include <pthread.h>
+#include <stdint.h>
+
+typedef struct _pthread_workqueue * pthread_workqueue_t;
+typedef void * pthread_workitem_handle_t;
+
+/* Pad size to 64 bytes. */
+typedef struct {
+ uint32_t sig;
+ int queueprio;
+ int overcommit;
+ unsigned int pad[13];
+} pthread_workqueue_attr_t;
+
+/* Work queue priority attributes. */
+#define WORKQ_HIGH_PRIOQUEUE 0
+#define WORKQ_DEFAULT_PRIOQUEUE 1
+#define WORKQ_LOW_PRIOQUEUE 2
+
+int pthread_workqueue_init_np(void);
+
+int pthread_workqueue_create_np(pthread_workqueue_t * workqp,
+ const pthread_workqueue_attr_t * attr);
+
+int pthread_workqueue_additem_np(pthread_workqueue_t workq,
+ void (*workitem_func)(void *), void * workitem_arg,
+ pthread_workitem_handle_t * itemhandlep, unsigned int *gencountp);
+
+int pthread_workqueue_attr_init_np(pthread_workqueue_attr_t * attrp);
+
+int pthread_workqueue_attr_destroy_np(pthread_workqueue_attr_t * attr);
+
+int pthread_workqueue_attr_setqueuepriority_np(pthread_workqueue_attr_t * attr,
+ int qprio);
+
+int pthread_workqueue_attr_getovercommit_np(
+ const pthread_workqueue_attr_t * attr, int * ocommp);
+
+int pthread_workqueue_attr_setovercommit_np(pthread_workqueue_attr_t * attr,
+ int ocomm);
+
+int pthread_workqueue_requestconcurrency_np(pthread_workqueue_t workq,
+ int queue, int request_concurrency);
+
+int pthread_workqueue_getovercommit_np(pthread_workqueue_t workq,
+ unsigned int *ocommp);
+
+#endif /* _PTHREAD_WORKQUEUE_H */
Index: libdispatch-0~svn188/src/os_shims.h
===================================================================
--- libdispatch-0~svn188.orig/src/os_shims.h 2010-07-01 21:10:39.000000000 -0400
+++ libdispatch-0~svn188/src/os_shims.h 2010-07-10 21:14:34.000000000 -0400
@@ -32,7 +32,7 @@
#include <pthread_machdep.h>
#endif
#if HAVE_PTHREAD_WORKQUEUES
-#include <pthread_workqueue.h>
+#include "shims/pthread_workqueue.h"
#endif
#if HAVE_PTHREAD_NP_H
#include <pthread_np.h>
|