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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
|
/*
* sched_pthread.c
*
* $Id: sched_pthread.c,v 1.8.2.4 2011/10/13 18:34:19 source Exp $
*
* Scheduler for pthreads
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2006 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*
*/
#include <pthread.h>
#include "thread_int.h"
#if defined(linux) && defined(VIRT_GPROF)
#define pthread_create gprof_pthread_create
#endif
char *build_thread_model = "-pthreads";
/* Indicate preemptive scheduling for this model */
int _thread_sched_preempt = 1;
int _thread_num_total; /* total threads in this model */
int _thread_num_runnable; /* # threads that can be run */
int _thread_num_wait; /* # threads waiting for something */
int _thread_num_dead; /* # threads on free list */
#define thr_event_pipe thr_nfds
#define Q_LOCK() pthread_mutex_lock ((pthread_mutex_t*) &_q_lock->mtx_mtx)
#define Q_UNLOCK() pthread_mutex_unlock ((pthread_mutex_t*) &_q_lock->mtx_mtx)
#define CKRET(X) \
if (X) \
{ \
_pthread_call_failed (__FILE__, __LINE__, X); \
goto failed; \
}
static thread_t *_main_thread;
static pthread_key_t _key_current;
static pthread_mutexattr_t _mutex_attr;
static pthread_attr_t _thread_attr;
static thread_queue_t _deadq;
thread_queue_t _waitq;
static dk_mutex_t *_q_lock;
#ifdef EXPIRIMENTAL
static int _ev_pipes[2];
static char _ev_never;
#endif
dk_mutex_t * all_mtxs_mtx;
static void
_pthread_call_failed (const char *file, int line, int error)
{
char msgbuf[200];
snprintf (msgbuf, sizeof (msgbuf), "pthread operation failed (%d)", error);
#ifdef MTX_DEBUG
gpf_notice (file, line, msgbuf);
#else
fprintf (stderr, "%s:%d %s\n", file, line, msgbuf);
#endif
}
static void
_sched_init (void)
{
_q_lock = mutex_allocate ();
thread_queue_init (&_deadq);
thread_queue_init (&_waitq);
_thread_num_wait = 0;
_thread_num_dead = 0;
_thread_num_runnable = -1; /* not counted */
_thread_num_total = 1;
#ifdef EXPIRIMENTAL
io_init ();
pipe (_ev_pipes);
thread_nb_fd (_ev_pipes[0]);
thread_nb_fd (_ev_pipes[1]);
#endif
#ifdef MTX_METER
all_mtxs_mtx = mutex_allocate ();
#endif
}
/******************************************************************************
*
* Threads
*
******************************************************************************/
thread_t *
thread_current (void)
{
#ifndef OLD_PTHREADS
return (thread_t *) pthread_getspecific (_key_current);
#else
void *value;
if (pthread_getspecific (_key_current, &value) == -1)
return NULL;
return value;
#endif
}
/*
* Allocates a condition variable
*/
static void *
_alloc_cv (void)
{
NEW_VAR (pthread_cond_t, cv);
int rc;
memset ((void *) cv, 0, sizeof (pthread_cond_t));
#ifndef OLD_PTHREADS
rc = pthread_cond_init (cv, NULL);
#else
rc = pthread_cond_init (cv, pthread_condattr_default);
#endif
CKRET (rc);
return (void *) cv;
failed:
dk_free ((void *) cv, sizeof (pthread_cond_t));
return NULL;
}
/*
* The main thread must call this function to convert itself into a thread.
*/
thread_t *
thread_initial (unsigned long stack_size)
{
int rc;
thread_t *thr = NULL;
if (_main_thread)
return _main_thread;
/*
* Initialize pthread key
*/
#ifndef OLD_PTHREADS
rc = pthread_key_create (&_key_current, NULL);
#else
rc = pthread_keycreate (&_key_current, NULL);
#endif
CKRET (rc);
/*
* Start off with a value of NULL
*/
rc = pthread_setspecific (_key_current, NULL);
CKRET (rc);
/*
* Initialize default thread/mutex attributes
*/
#ifndef OLD_PTHREADS
/* attribute for thread creation */
rc = pthread_attr_init (&_thread_attr);
CKRET (rc);
/* attribute for mutex creation */
rc = pthread_mutexattr_init (&_mutex_attr);
CKRET (rc);
#else
rc = pthread_attr_create (&_thread_attr);
CKRET (rc);
rc = pthread_mutexattr_create (&_mutex_attr);
CKRET (rc);
#endif
#if defined (PTHREAD_PROCESS_PRIVATE) && !defined(oldlinux) && !defined(__FreeBSD__)
rc = pthread_mutexattr_setpshared (&_mutex_attr, PTHREAD_PROCESS_PRIVATE);
CKRET (rc);
#endif
#if defined (MUTEX_FAST_NP) && !defined (_AIX)
rc = pthread_mutexattr_setkind_np (&_mutex_attr, MUTEX_FAST_NP);
CKRET (rc);
#endif
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
rc = pthread_mutexattr_settype (&_mutex_attr, PTHREAD_MUTEX_ADAPTIVE_NP);
CKRET (rc);
#endif
/*
* Allocate a thread structure
*/
thr = (thread_t *) dk_alloc (sizeof (thread_t));
memset (thr, 0, sizeof (thread_t));
assert (_main_thread == NULL);
_main_thread = thr;
_sched_init ();
if (stack_size == 0)
stack_size = MAIN_STACK_SIZE;
#if (SIZEOF_VOID_P == 8)
stack_size *= 2;
#endif
#if defined (__x86_64 ) && defined (SOLARIS)
/*GK: the LDAP on that platform requires that */
stack_size *= 2;
#endif
stack_size = ((stack_size / 8192) + 1) * 8192;
thr->thr_stack_size = stack_size;
thr->thr_status = RUNNING;
thr->thr_cv = _alloc_cv ();
thr->thr_sem = semaphore_allocate (0);
thr->thr_schedule_sem = semaphore_allocate (0);
if (thr->thr_cv == NULL)
goto failed;
_thread_init_attributes (thr);
thread_set_priority (thr, NORMAL_PRIORITY);
rc = pthread_setspecific (_key_current, thr);
CKRET (rc);
return thr;
failed:
if (thr)
{
_thread_free_attributes (thr);
dk_free (thr, sizeof (thread_t));
}
return NULL;
}
static void *
_thread_boot (void *arg)
{
thread_t *thr = (thread_t *) arg;
int rc;
rc = pthread_setspecific (_key_current, thr);
CKRET (rc);
/* Store the context so we can easily restart a dead thread */
setjmp (thr->thr_init_context);
thr->thr_status = RUNNING;
_thread_init_attributes (thr);
thr->thr_stack_base = (void *) &arg;
rc = (*thr->thr_initial_function) (thr->thr_initial_argument);
/* thread died, put it on the dead queue */
thread_exit (rc);
/* We should never come here */
GPF_T;
failed:
return (void *) 1L;
}
static thread_t *
thread_alloc ()
{
thread_t *thr;
thr = (thread_t *) dk_alloc (sizeof (thread_t));
memset (thr, 0, sizeof (thread_t));
thr->thr_status = RUNNABLE;
thr->thr_handle = dk_alloc (sizeof (pthread_t));
thr->thr_cv = _alloc_cv ();
thr->thr_sem = semaphore_allocate (0);
thr->thr_schedule_sem = semaphore_allocate (0);
return thr;
}
thread_t *
thread_create (
thread_init_func initial_function,
unsigned long stack_size,
void *initial_argument)
{
thread_t *thr;
int rc;
assert (_main_thread != NULL);
if (stack_size == 0)
stack_size = THREAD_STACK_SIZE;
#if (SIZEOF_VOID_P == 8)
stack_size *= 2;
#endif
#if defined (__x86_64 ) && defined (SOLARIS)
/*GK: the LDAP on that platform requires that */
stack_size *= 2;
#endif
#ifdef HPUX_ITANIUM64
stack_size += 8 * 8192;
#endif
stack_size = ((stack_size / 8192) + 1) * 8192;
#if defined (PTHREAD_STACK_MIN)
if (stack_size < PTHREAD_STACK_MIN)
{
stack_size = PTHREAD_STACK_MIN;
}
#endif
/* Any free threads with the right stack size? */
Q_LOCK ();
for (thr = (thread_t *) _deadq.thq_head.thr_next;
thr != (thread_t *) &_deadq.thq_head;
thr = (thread_t *) thr->thr_hdr.thr_next)
{
/* if (thr->thr_stack_size >= stack_size) */
break;
}
Q_UNLOCK ();
/* No free threads, create a new one */
if (thr == (thread_t *) &_deadq.thq_head)
{
#ifndef OLD_PTHREADS
size_t os_stack_size = stack_size;
#endif
thr = thread_alloc ();
thr->thr_initial_function = initial_function;
thr->thr_initial_argument = initial_argument;
thr->thr_stack_size = stack_size;
if (thr->thr_cv == NULL)
goto failed;
#ifdef HPUX_ITANIUM64
if (stack_size > PTHREAD_STACK_MIN)
{
size_t s, rses;
pthread_attr_getstacksize (&_thread_attr, &s);
pthread_attr_getrsestacksize_np (&_thread_attr, &rses);
log_error ("default rses=%d stack=%d : %m", rses,s);
}
#endif
#ifndef OLD_PTHREADS
# if defined(HAVE_PTHREAD_ATTR_SETSTACKSIZE)
rc = pthread_attr_setstacksize (&_thread_attr, stack_size);
if (rc)
{
log_error ("Failed setting the OS thread stack size to %d : %m", stack_size);
}
# endif
#if defined(HAVE_PTHREAD_ATTR_GETSTACKSIZE)
if (0 == pthread_attr_getstacksize (&_thread_attr, &os_stack_size))
{
if (os_stack_size > 4 * 8192)
stack_size = thr->thr_stack_size = ((unsigned long) os_stack_size) - 4 * 8192;
}
#endif
#ifdef HPUX_ITANIUM64
if (stack_size > PTHREAD_STACK_MIN)
{
size_t rsestack_size = stack_size / 2;
rc = pthread_attr_setrsestacksize_np (&_thread_attr, rsestack_size);
if (rc)
{
log_error ("Failed setting the OS thread 'rse' stack size to %d (plain stack size set to %d) : %m", rsestack_size, stack_size);
}
thr->thr_stack_size /= 2;
}
#endif
rc = pthread_create ((pthread_t *) thr->thr_handle, &_thread_attr,
_thread_boot, thr);
CKRET (rc);
/* rc = pthread_detach (*(pthread_t *) thr->thr_handle); */
/* CKRET (rc); */
#else /* OLD_PTHREAD */
rc = pthread_attr_setstacksize (&_thread_attr, stack_size);
CKRET (rc);
rc = pthread_create ((pthread_t *) thr->thr_handle, _thread_attr,
_thread_boot, thr);
CKRET (rc);
/* rc = pthread_detach ((pthread_t *) thr->thr_handle); */
/* CKRET (rc); */
#endif
_thread_num_total++;
#if 0
if (DO_LOG(LOG_THR))
log_info ("THRD_0 OS threads create (%i)", _thread_num_total);
#endif
thread_set_priority (thr, NORMAL_PRIORITY);
}
else
{
Q_LOCK ();
thread_queue_remove (&_deadq, thr);
_thread_num_dead--;
Q_UNLOCK ();
assert (thr->thr_status == DEAD);
/* Set new context for the thread and resume it */
thr->thr_initial_function = initial_function;
thr->thr_initial_argument = initial_argument;
thr->thr_status = RUNNABLE;
rc = pthread_cond_signal ((pthread_cond_t *) thr->thr_cv);
CKRET (rc);
/* if (DO_LOG(LOG_THR))
log_info ("THRD_3 OS threads reuse. Info threads - total (%ld) wait (%ld) dead (%ld)",
_thread_num_total, _thread_num_wait, _thread_num_dead);*/
}
return thr;
failed:
if (thr->thr_status == RUNNABLE)
{
_thread_free_attributes (thr);
dk_free (thr, sizeof (thread_t));
}
return NULL;
}
thread_t *
thread_attach (void)
{
thread_t *thr;
int rc;
thr = thread_alloc ();
thr->thr_stack_size = (unsigned long) -1;
thr->thr_attached = 1;
if (thr->thr_cv == NULL)
goto failed;
*((pthread_t *) thr->thr_handle) = pthread_self ();
rc = pthread_setspecific (_key_current, thr);
CKRET (rc);
/* Store the context so we can easily restart a dead thread */
setjmp (thr->thr_init_context);
thr->thr_status = RUNNING;
_thread_init_attributes (thr);
thr->thr_stack_base = 0;
return thr;
failed:
if (thr->thr_sem)
semaphore_free (thr->thr_sem);
if (thr->thr_schedule_sem)
semaphore_free (thr->thr_schedule_sem);
if (thr->thr_handle)
dk_free (thr->thr_handle, sizeof (pthread_t));
dk_free (thr, sizeof (thread_t));
return NULL;
}
void
thread_allow_schedule (void)
{
#if 0
pthread_yield ();
#endif
}
void
thread_exit (int n)
{
thread_t *thr = current_thread;
volatile int is_attached = thr->thr_attached;
if (thr == _main_thread)
{
call_exit (n);
}
thr->thr_retcode = n;
thr->thr_status = DEAD;
if (is_attached)
{
thr->thr_status = TERMINATE;
goto terminate;
}
Q_LOCK ();
thread_queue_to (&_deadq, thr);
_thread_num_dead++;
do
{
int rc = pthread_cond_wait ((pthread_cond_t *) thr->thr_cv, (pthread_mutex_t*) &_q_lock->mtx_mtx);
CKRET (rc);
} while (thr->thr_status == DEAD);
Q_UNLOCK ();
if (thr->thr_status == TERMINATE)
goto terminate;
/* Jumps back into _thread_boot */
longjmp (thr->thr_init_context, 1);
failed:
thread_queue_remove (&_deadq, thr);
_thread_num_dead--;
Q_UNLOCK ();
terminate:
if (thr->thr_status == TERMINATE)
{
#ifndef OLD_PTHREADS
pthread_detach (* (pthread_t *)thr->thr_handle);
#else
pthread_detach ( (pthread_t *)thr->thr_handle);
#endif
_thread_free_attributes (thr);
dk_free ((void *) thr->thr_cv, sizeof (pthread_cond_t));
semaphore_free (thr->thr_sem);
semaphore_free (thr->thr_schedule_sem);
dk_free (thr->thr_handle, sizeof (pthread_t));
thr_free_alloc_cache (thr);
dk_free (thr, sizeof (thread_t));
}
if (!is_attached)
{
_thread_num_total--;
pthread_exit ((void *) 1L);
}
}
#if 1
int
thread_release_dead_threads (int leave_count)
{
thread_t *thr;
int rc;
long thread_killed = 0;
thread_queue_t term;
Q_LOCK ();
if (_deadq.thq_count <= leave_count)
{
Q_UNLOCK ();
return 0;
}
thread_queue_init (&term);
while (_deadq.thq_count > leave_count)
{
thr = thread_queue_from (&_deadq);
if (!thr)
break;
_thread_num_dead--;
thread_queue_to (&term, thr);
}
Q_UNLOCK ();
while (NULL != (thr = thread_queue_from (&term)))
{
thr->thr_status = TERMINATE;
rc = pthread_cond_signal ((pthread_cond_t *) thr->thr_cv);
CKRET (rc);
thread_killed++;
}
#if 0
if (thread_killed)
log_info ("%ld OS threads released", thread_killed);
#endif
return thread_killed;
failed:
GPF_T1("Thread restart failed");
return 0;
}
#endif
int *
thread_errno (void)
{
return ¤t_thread->thr_err;
}
int
thread_set_priority (thread_t *self, int prio)
{
int old_prio = self->thr_priority;
if (prio < 0 && prio >= MAX_PRIORITY)
return old_prio;
#if defined (PRI_RR_MIN) && !defined(__osf__)
switch (prio)
{
case LOW_PRIORITY:
prio = PRI_RR_MIN;
break;
case NORMAL_PRIORITY:
prio = (PRI_RR_MIN + PRI_RR_MAX) / 2;
break;
case HIGH_PRIORITY:
prio = PRI_RR_MAX;
break;
default:
return old_prio;
}
/*
* Cannot set priority on main thread, because it does not have a handle
*/
if (self != _main_thread &&
pthread_setprio (*(pthread_t *) self->thr_handle, prio))
{
prio = old_prio;
}
#endif
self->thr_priority = prio;
return old_prio;
}
int
thread_get_priority (thread_t *self)
{
return self->thr_priority;
}
#ifdef EXPIRIMENTAL
/*
* Wait for an event to happen.
*
* If holds != NULL, the caller holds the mutex, which will be released
* before going to sleep. The thread calling thread_signal_cond *must* hold
* the same mutex.
*
* The holds mutex is reacquired after wakeup.
*/
int
thread_wait_cond (void *event, dk_mutex_t *holds, TVAL timeout)
{
thread_t *thr = current_thread;
dk_mutex_t *mtx;
int ok;
thr->thr_status = WAITEVENT;
thr->thr_event = event ? event : &_ev_never;
thr->thr_event_pipe = -1;
mtx = holds ? holds : _q_lock;
Q_LOCK ();
do
{
thread_queue_to (&_waitq, thr);
_thread_num_wait++;
if (holds)
Q_UNLOCK ();
if (timeout == TV_INFINITE)
ok = pthread_cond_wait (thr->thr_cv, &mtx->mtx_mtx);
else
{
struct timespec to;
struct timeval now;
gettimeofday (&now, NULL);
to.tv_sec = now.tv_sec + timeout / 1000;
to.tv_nsec = now.tv_usec + 1000 * (timeout % 1000);
if (to.tv_nsec > 1000000)
{
to.tv_nsec -= 1000000;
to.tv_sec++;
}
ok = pthread_cond_timedwait (thr->thr_cv, &mtx->mtx_mtx, &to);
}
if (holds)
Q_LOCK ();
thread_queue_remove (&_waitq, thr);
_thread_num_wait--;
} while (ok == 0 && thr->thr_event);
Q_UNLOCK ();
CKRET (ok);
failed:
thr->thr_status = RUNNING;
return thr->thr_event == NULL ? 0 : -1;
}
/*
* Wake up all threads waiting for an event.
*/
int
thread_signal_cond (void *event)
{
thread_t *thr;
thread_t *next;
int count;
char dummy;
count = 0;
Q_LOCK ();
for (thr = (thread_t *) _waitq.thq_head.thr_next;
thr != (thread_t *) &_waitq.thq_head;
thr = next)
{
next = (thread_t *) thr->thr_hdr.thr_next;
if (thr->thr_event == event)
{
thr->thr_event = NULL;
if (thr->thr_event_pipe == -1)
pthread_cond_signal (thr->thr_cv);
else
/*
* Wake up the select
* XXX Should fix this - only one thread can safely wait
* for an event in thread_select at a time.
*/
write (thr->thr_event_pipe, &dummy, 1);
count++;
}
}
Q_UNLOCK ();
return count;
}
int
thread_select (int n, fd_set *rfds, fd_set *wfds, void *event, TVAL timeout)
{
thread_t *thr = current_thread;
struct timeval *ptv, tv;
char dummy;
int rc;
if (timeout == TV_INFINITE)
ptv = NULL;
else
{
tv.tv_sec = timeout / 1000;
tv.tv_usec = (timeout % 1000) * 1000;
ptv = &tv;
}
if (event)
{
thr->thr_event = event;
thr->thr_event_pipe = _ev_pipes[1];
if (rfds == NULL)
rfds = &thr->thr_rfds;
FD_SET (_ev_pipes[0], rfds);
if (_ev_pipes[0] >= n)
n = _ev_pipes[0] + 1;
Q_LOCK ();
thread_queue_to (&_waitq, thr);
Q_UNLOCK ();
}
_thread_num_wait++;
thr->thr_status = WAITEVENT;
for (;;)
{
if ((rc = select (n, rfds, wfds, NULL, ptv)) == -1)
{
switch (errno)
{
case EINTR:
continue;
default:
break;
}
thr_errno = errno;
}
else
thr_errno = 0;
break;
}
thr->thr_status = RUNNING;
_thread_num_wait--;
if (event)
{
thr->thr_event = NULL;
thr->thr_event_pipe = -1;
if (rc > 0 && FD_ISSET (_ev_pipes[0], rfds))
{
read (_ev_pipes[0], &dummy, 1);
rc = 0;
}
Q_LOCK ();
thread_queue_remove (&_waitq, thr);
Q_UNLOCK ();
}
return rc;
}
void
thread_sleep (TVAL timeout)
{
thread_select (0, NULL, NULL, NULL, timeout);
}
#endif
/******************************************************************************
*
* Semaphores
*
******************************************************************************/
semaphore_t *
semaphore_allocate (int entry_count)
{
NEW_VAR (pthread_mutex_t, ptm);
NEW_VAR (semaphore_t, sem);
int rc;
memset ((void *) ptm, 0, sizeof (pthread_mutex_t));
#ifndef OLD_PTHREADS
rc = pthread_mutex_init (ptm, &_mutex_attr);
#else
rc = pthread_mutex_init (ptm, _mutex_attr);
#endif
CKRET (rc);
sem->sem_entry_count = entry_count;
sem->sem_handle = (void *) ptm;
thread_queue_init (&sem->sem_waiting);
return sem;
failed:
dk_free ((void *) ptm, sizeof (pthread_mutex_t));
dk_free (sem, sizeof (semaphore_t));
return NULL;
}
void
semaphore_free (semaphore_t *sem)
{
pthread_mutex_destroy ((pthread_mutex_t*) sem->sem_handle);
dk_free (sem->sem_handle, sizeof (pthread_mutex_t));
dk_free (sem, sizeof (semaphore_t));
}
int
semaphore_enter (semaphore_t * sem)
{
thread_t *thr = current_thread;
int rc;
rc = pthread_mutex_lock ((pthread_mutex_t*) sem->sem_handle);
CKRET (rc);
if (sem->sem_entry_count)
sem->sem_entry_count--;
else
{
thread_queue_to (&sem->sem_waiting, thr);
_thread_num_wait++;
thr->thr_status = WAITSEM;
do
{
rc = pthread_cond_wait ((pthread_cond_t *) thr->thr_cv, (pthread_mutex_t*) sem->sem_handle);
CKRET (rc);
} while (thr->thr_status == WAITSEM);
}
pthread_mutex_unlock ((pthread_mutex_t*) sem->sem_handle);
return 0;
failed:
GPF_T1 ("semaphore_enter() failed");
return -1;
}
int
semaphore_try_enter (semaphore_t *sem)
{
int rc;
rc = pthread_mutex_lock ((pthread_mutex_t*) sem->sem_handle);
CKRET (rc);
if (sem->sem_entry_count)
{
sem->sem_entry_count--; /* IvAn: this decrement was added. */
pthread_mutex_unlock ((pthread_mutex_t*) sem->sem_handle);
return 1;
}
pthread_mutex_unlock ((pthread_mutex_t*) sem->sem_handle);
failed:
return 0;
}
#ifdef SEM_DEBUG
void
semaphore_leave_dbg (int ln, const char *file, semaphore_t *sem)
#else
void
semaphore_leave (semaphore_t *sem)
#endif
{
thread_t *thr;
int rc;
rc = pthread_mutex_lock ((pthread_mutex_t*) sem->sem_handle);
CKRET (rc);
#ifdef SEM_DEBUG
{
int inx;
if (304 == ln && sem->sem_entry_count) GPF_T1 ("should have 0 count when signalling clrg_wait");
for (inx = MAX_SEM_ENT - 1; inx > 0; inx--)
{
sem->sem_last_left_line[inx] = sem->sem_last_left_line[inx - 1];
sem->sem_last_left_file[inx] = sem->sem_last_left_file[inx - 1];
}
sem->sem_last_left_line[0] = ln;
sem->sem_last_left_file[0] = file;
}
#endif
if (sem->sem_entry_count)
sem->sem_entry_count++;
else
{
thr = thread_queue_from (&sem->sem_waiting);
if (thr)
{
_thread_num_wait--;
assert (thr->thr_status == WAITSEM);
thr->thr_status = RUNNING;
pthread_cond_signal ((pthread_cond_t *) thr->thr_cv);
}
else
sem->sem_entry_count++;
}
rc = pthread_mutex_unlock ((pthread_mutex_t*) sem->sem_handle);
CKRET (rc);
return;
failed:
GPF_T1 ("semaphore_leave() failed");
}
/******************************************************************************
*
* Mutexes
*
******************************************************************************/
#ifdef MTX_METER
dk_set_t all_mtxs = NULL;
#endif
dk_mutex_t *
mutex_allocate_typed (int type)
{
int rc;
static int is_initialized = 0;
NEW_VARZ (dk_mutex_t, mtx);
mtx->mtx_type = type;
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == type)
{
pthread_spin_init (&mtx->l.spinl, 0);
}
else
#endif
{
memset ((void *) &mtx->mtx_mtx, 0, sizeof (pthread_mutex_t));
#ifndef OLD_PTHREADS
if (!is_initialized)
{
pthread_mutexattr_init (&_mutex_attr);
#if defined (PTHREAD_PROCESS_PRIVATE) && !defined(oldlinux) && !defined (__FreeBSD__)
rc = pthread_mutexattr_setpshared (&_mutex_attr, PTHREAD_PROCESS_PRIVATE);
CKRET (rc);
#endif
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
rc = pthread_mutexattr_settype (&_mutex_attr, PTHREAD_MUTEX_ADAPTIVE_NP);
CKRET (rc);
#endif
is_initialized = 1;
}
rc = pthread_mutex_init (&mtx->mtx_mtx, &_mutex_attr);
#else
rc = pthread_mutex_init (&mtx->mtx_mtx, _mutex_attr);
#endif
CKRET (rc);
}
#ifdef MTX_DEBUG
mtx->mtx_owner = NULL;
#endif
#ifdef MTX_METER
if (all_mtxs_mtx)
mutex_enter (all_mtxs_mtx);
dk_set_push (&all_mtxs, (void*)mtx);
if (all_mtxs_mtx)
mutex_leave (all_mtxs_mtx);
#endif
return mtx;
failed:
dk_free (mtx, sizeof (dk_mutex_t));
return NULL;
}
void
dk_mutex_init (dk_mutex_t * mtx, int type)
{
int rc;
static int is_initialized = 0;
static pthread_mutexattr_t _attr;
memset (mtx, 0, sizeof (dk_mutex_t));
mtx->mtx_type = type;
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == type)
{
pthread_spin_init (&mtx->l.spinl, 0);
}
else
#endif
{
memset ((void *) &mtx->mtx_mtx, 0, sizeof (pthread_mutex_t));
#ifndef OLD_PTHREADS
if (!is_initialized)
{
pthread_mutexattr_init (&_attr);
#if defined (PTHREAD_PROCESS_PRIVATE) && !defined (__FreeBSD__) && !defined(oldlinux)
rc = pthread_mutexattr_setpshared (&_attr, PTHREAD_PROCESS_PRIVATE);
CKRET (rc);
#endif
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
rc = pthread_mutexattr_settype (&_attr, PTHREAD_MUTEX_ADAPTIVE_NP);
CKRET (rc);
#endif
is_initialized = 1;
}
rc = pthread_mutex_init (&mtx->mtx_mtx, &_attr);
#else
rc = pthread_mutex_init (&mtx->mtx_mtx, _mutex_attr);
#endif
CKRET (rc);
}
#ifdef MTX_DEBUG
mtx->mtx_owner = NULL;
#endif
#ifdef MTX_METER
if (all_mtxs_mtx)
mutex_enter (all_mtxs_mtx);
dk_set_push (&all_mtxs, (void*)mtx);
if (all_mtxs_mtx)
mutex_leave (all_mtxs_mtx);
#endif
return;
failed: ;
}
dk_mutex_t *
mutex_allocate ()
{
return mutex_allocate_typed (MUTEX_TYPE_SHORT);
}
void
mutex_free (dk_mutex_t *mtx)
{
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
{
pthread_spin_destroy (&mtx->l.spinl);
}
else
#endif
{
pthread_mutex_destroy ((pthread_mutex_t*) &mtx->mtx_mtx);
}
#ifdef MTX_DEBUG
dk_free_box (mtx->mtx_name);
#endif
#ifdef MTX_METER
mutex_enter (all_mtxs_mtx);
dk_set_delete (&all_mtxs, (void*) mtx);
mutex_leave (all_mtxs_mtx);
#endif
dk_free (mtx, sizeof (dk_mutex_t));
}
void
dk_mutex_destroy (dk_mutex_t *mtx)
{
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
{
pthread_spin_destroy (&mtx->l.spinl);
}
else
#endif
{
pthread_mutex_destroy ((pthread_mutex_t*) &mtx->mtx_mtx);
}
#ifdef MTX_DEBUG
dk_free_box (mtx->mtx_name);
#endif
#ifdef MTX_METER
mutex_enter (all_mtxs_mtx);
dk_set_delete (&all_mtxs, (void*) mtx);
mutex_leave (all_mtxs_mtx);
#endif
}
#if defined (MTX_DEBUG) || defined (MTX_METER)
void
mutex_option (dk_mutex_t * mtx, char * name, mtx_entry_check_t ck, void * cd)
{
dk_free_box (mtx->mtx_name);
mtx->mtx_name = box_dv_short_string (name);
#ifdef MTX_DEBUG
mtx->mtx_entry_check = ck;
mtx->mtx_entry_check_cd = cd;
#endif
}
#endif
#if defined(OLD_PTHREADS)
#define TRYLOCK_SUCCESS 1
#else
#define TRYLOCK_SUCCESS 0
#endif
#define MTX_MAX_SPINS 200
#undef mutex_enter
#undef mutex_leave
#ifdef APP_SPIN
#ifdef MTX_DEBUG
int
mutex_enter_dbg (int line, const char * file, dk_mutex_t *mtx)
#else
int
mutex_enter (dk_mutex_t *mtx)
#endif
{
#ifdef MTX_DEBUG
du_thread_t * self = thread_current ();
#endif
int rc;
#ifdef MTX_DEBUG
assert (mtx->mtx_owner != self || !self);
if (mtx->mtx_entry_check
&& !mtx->mtx_entry_check (mtx, self, mtx->mtx_entry_check_cd))
GPF_T1 ("Mtx entry check fail");
#endif
if (mtx->mtx_spins < MTX_MAX_SPINS)
{
int ctr;
for (ctr = 0; ctr < MTX_MAX_SPINS; ctr++)
{
if (TRYLOCK_SUCCESS == pthread_mutex_trylock (&mtx->mtx_mtx))
{
#ifdef MTX_METER
if (ctr > 0)
mtx->mtx_spin_waits++;
#endif
mtx->mtx_spins += (ctr - mtx->mtx_spins) / 8;
goto got_it;
}
}
mtx->mtx_spins = MTX_MAX_SPINS;
}
else
{
if (++mtx->mtx_spins > 10 + MTX_MAX_SPINS)
mtx->mtx_spins = 0;
}
pthread_mutex_lock (&mtx->mtx_mtx);
#ifdef MTX_METER
mtx->mtx_waits++;
#endif
got_it:
#ifdef MTX_METER
mtx->mtx_enters++;
#endif
#ifdef MTX_DEBUG
assert (mtx->mtx_owner == NULL);
mtx->mtx_owner = self;
mtx->mtx_entry_file = (char *) file;
mtx->mtx_entry_line = line;
#endif
return 0;
failed:
GPF_T1 ("mutex_enter() failed");
return -1;
}
#else
#ifdef MTX_DEBUG
int
mutex_enter_dbg (int line, const char * file, dk_mutex_t *mtx)
#else
int
mutex_enter (dk_mutex_t *mtx)
#endif
{
#ifdef MTX_DEBUG
du_thread_t * self = thread_current ();
#endif
int rc;
#ifdef MTX_DEBUG
assert (mtx->mtx_owner != self || !self);
if (mtx->mtx_entry_check
&& !mtx->mtx_entry_check (mtx, self, mtx->mtx_entry_check_cd))
GPF_T1 ("Mtx entry check fail");
#endif
#ifdef MTX_METER
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
rc = pthread_spin_trylock (&mtx->l.spinl);
else
#endif
rc = pthread_mutex_trylock ((pthread_mutex_t*) &mtx->mtx_mtx);
if (TRYLOCK_SUCCESS != rc)
{
long long wait_ts = rdtsc ();
static int unnamed_waits;
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
rc = pthread_spin_lock (&mtx->l.spinl);
else
#endif
rc = pthread_mutex_lock ((pthread_mutex_t*) &mtx->mtx_mtx);
mtx->mtx_wait_clocks += rdtsc () - wait_ts;
mtx->mtx_waits++;
if (!mtx->mtx_name)
unnamed_waits++; /*for dbg breakpoint */
mtx->mtx_enters++;
}
else
mtx->mtx_enters++;
#else
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
rc = pthread_spin_lock (&mtx->l.spinl);
else
#endif
rc = pthread_mutex_lock ((pthread_mutex_t*) &mtx->mtx_mtx);
#endif
CKRET (rc);
#ifdef MTX_DEBUG
assert (mtx->mtx_owner == NULL);
mtx->mtx_owner = self;
mtx->mtx_entry_file = (char *) file;
mtx->mtx_entry_line = line;
#endif
return 0;
failed:
GPF_T1 ("mutex_enter() failed");
return -1;
}
#endif /* APP_SPIN */
#ifdef MTX_DEBUG
#undef mutex_enter
int
mutex_enter (dk_mutex_t * mtx)
{
return (mutex_enter_dbg (__LINE__, __FILE__, mtx));
}
#undef mutex_leave
void
mutex_leave (dk_mutex_t * mtx)
{
mutex_leave_dbg (__LINE__, __FILE__, mtx);
}
#endif
int
mutex_try_enter (dk_mutex_t *mtx)
{
#ifndef MTX_DEBUG
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
return pthread_spin_trylock (&mtx->l.spinl) == TRYLOCK_SUCCESS ? 1 : 0;
else
#endif
return pthread_mutex_trylock ((pthread_mutex_t *) &mtx->mtx_mtx) == TRYLOCK_SUCCESS ? 1 : 0;
#else
if (
#if HAVE_SPINLOCK
MUTEX_TYPE_SPIN == mtx->mtx_type
? pthread_spin_trylock (&mtx->l.spinl) == TRYLOCK_SUCCESS
:
#endif
pthread_mutex_trylock ((pthread_mutex_t*) &mtx->mtx_mtx) == TRYLOCK_SUCCESS)
{
assert (mtx->mtx_owner == NULL);
mtx->mtx_owner = thread_current ();
return 1;
}
return 0;
#endif
}
#ifdef MTX_DEBUG
void
mutex_leave_dbg (int ln, const char * file, dk_mutex_t *mtx)
#else
void
mutex_leave (dk_mutex_t *mtx)
#endif
{
#ifdef MTX_DEBUG
assert (mtx->mtx_owner == thread_current ());
mtx->mtx_owner = NULL;
mtx->mtx_leave_line = ln;
mtx->mtx_leave_file = file;
#endif
#if HAVE_SPINLOCK
if (MUTEX_TYPE_SPIN == mtx->mtx_type)
pthread_spin_unlock (&mtx->l.spinl);
else
#endif
pthread_mutex_unlock ((pthread_mutex_t*) &mtx->mtx_mtx);
}
void
mutex_stat ()
{
#ifdef MTX_METER
DO_SET (dk_mutex_t *, mtx, &all_mtxs)
{
#ifdef APP_SPIN
printf ("%s %p E: %ld W %ld spinw: %ld spin: %d\n", mtx->mtx_name ? mtx->mtx_name : "<?>", mtx,
mtx->mtx_enters, mtx->mtx_waits, mtx->mtx_spin_waits, mtx->mtx_spins);
#else
printf ("%s %p E: %ld W %ld wclk %ld \n", mtx->mtx_name ? mtx->mtx_name : "<?>", mtx,
mtx->mtx_enters, mtx->mtx_waits, mtx->mtx_wait_clocks);
#endif
}
END_DO_SET();
#else
printf ("Mutex stats not enabled.}\n");
#endif
}
/******************************************************************************
*
* Spinlocks
*
******************************************************************************/
/* Pthreads does not support spinlocks, so simulate them by using a mutexes */
spinlock_t *
spinlock_allocate (void)
{
return (spinlock_t *) mutex_allocate ();
}
void
spinlock_free (spinlock_t *self)
{
mutex_free ((dk_mutex_t *) self);
}
void
spinlock_enter (spinlock_t *self)
{
pthread_mutex_lock ((pthread_mutex_t*) &(((dk_mutex_t *)&self)->mtx_mtx));
}
void
spinlock_leave (spinlock_t *self)
{
pthread_mutex_unlock ((pthread_mutex_t*) &(((dk_mutex_t *) &self)->mtx_mtx));
}
/*
* * pthread_create wrapper for gprof compatibility
*/
#if defined(linux) && defined(VIRT_GPROF)
#undef pthread_create
typedef struct wrapper_s
{
void * (*start_routine)(void *);
void * arg;
pthread_mutex_t lock;
pthread_cond_t wait;
struct itimerval itimer;
} wrapper_t;
static void * wrapper_routine(void *);
/* Same prototype as pthread_create; use some #define magic to
* * transparently replace it in other files */
int gprof_pthread_create(pthread_t * thread, pthread_attr_t * attr,
void * (*start_routine)(void *), void * arg)
{
wrapper_t wrapper_data;
int i_return;
/* Initialize the wrapper structure */
wrapper_data.start_routine = start_routine;
wrapper_data.arg = arg;
getitimer(ITIMER_PROF, &wrapper_data.itimer);
pthread_cond_init(&wrapper_data.wait, NULL);
pthread_mutex_init(&wrapper_data.lock, NULL);
pthread_mutex_lock(&wrapper_data.lock);
/* The real pthread_create call */
i_return = pthread_create(thread, attr, &wrapper_routine,
&wrapper_data);
/* If the thread was successfully spawned, wait for the data
* * to be released */
if(i_return == 0)
{
pthread_cond_wait(&wrapper_data.wait, &wrapper_data.lock);
}
pthread_mutex_unlock(&wrapper_data.lock);
pthread_mutex_destroy(&wrapper_data.lock);
pthread_cond_destroy(&wrapper_data.wait);
return i_return;
}
/* The wrapper function in charge for setting the itimer value */
static void * wrapper_routine(void * data)
{
/* Put user data in thread-local variables */
void * (*start_routine)(void *) = ((wrapper_t*)data)->start_routine;
void * arg = ((wrapper_t*)data)->arg;
/* Set the profile timer value */
setitimer(ITIMER_PROF, &((wrapper_t*)data)->itimer, NULL);
/* Tell the calling thread that we do not need its data anymore */
pthread_mutex_lock(&((wrapper_t*)data)->lock);
pthread_cond_signal(&((wrapper_t*)data)->wait);
pthread_mutex_unlock(&((wrapper_t*)data)->lock);
/* Call the real function */
return start_routine(arg);
}
#endif
|