/usr/lib64/perl5/CORE
NameSizeModeActions
av.h40090644editdlrm
cc_runtime.h21670644editdlrm
config.h1450000644editdlrm
cop.h303680644editdlrm
cv.h96150644editdlrm
dosish.h61720644editdlrm
embed.h1679400644editdlrm
embedvar.h323420644editdlrm
EXTERN.h18110644editdlrm
fakesdio.h33160644editdlrm
fakethr.h19660644editdlrm
form.h7230644editdlrm
git_version.h4230644editdlrm
gv.h80620644editdlrm
handy.h328250644editdlrm
hv.h215620644editdlrm
INTERN.h15100644editdlrm
intrpvar.h226230644editdlrm
iperlsys.h486300644editdlrm
keywords.h64280644editdlrm
libperl.so14858960755editdlrm
malloc_ctl.h14840644editdlrm
mg.h24360644editdlrm
mydtrace.h9440644editdlrm
nostdio.h34500644editdlrm
op.h242990644editdlrm
opcode.h507500644editdlrm
opnames.h95960644editdlrm
overload.h15210644editdlrm
pad.h124660644editdlrm
parser.h39430644editdlrm
patchlevel.h94370644editdlrm
perl.h1738840644editdlrm
perlapi.h291440644editdlrm
perlio.h109250644editdlrm
perliol.h140540644editdlrm
perlsdio.h50320644editdlrm
perlsfio.h27030644editdlrm
perlvars.h57570644editdlrm
perly.h49510644editdlrm
pp.h183040644editdlrm
pp_proto.h109780644editdlrm
proto.h2194950644editdlrm
reentr.h822120644editdlrm
regcharclass.h262710644editdlrm
regcomp.h296730644editdlrm
regexp.h245520644editdlrm
regnodes.h309720644editdlrm
scope.h84930644editdlrm
sperl.o2641280644editdlrm
sv.h740630644editdlrm
thread.h125630644editdlrm
uconfig.h1436670644editdlrm
unixish.h45610644editdlrm
utf8.h127890644editdlrm
utfebcdic.h309020644editdlrm
util.h16570644editdlrm
uudmap.h9040644editdlrm
warnings.h40600644editdlrm
XSUB.h211100644editdlrm
Edit: /usr/lib64/perl5/CORE/fakethr.h (1966B)
/* fakethr.h * * Copyright (C) 1999, by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * */ typedef int perl_mutex; typedef int perl_key; typedef struct perl_thread *perl_os_thread; /* With fake threads, thr is global(ish) so we don't need dTHR */ #define dTHR extern int errno struct perl_wait_queue { struct perl_thread * thread; struct perl_wait_queue * next; }; typedef struct perl_wait_queue *perl_cond; /* Ask thread.h to include our per-thread extras */ #define HAVE_THREAD_INTERN struct thread_intern { perl_os_thread next_run, prev_run; /* Linked list of runnable threads */ perl_cond wait_queue; /* Wait queue that we are waiting on */ IV private; /* Holds data across time slices */ I32 savemark; /* Holds MARK for thread join values */ }; #define init_thread_intern(t) \ STMT_START { \ t->self = (t); \ (t)->i.next_run = (t)->i.prev_run = (t); \ (t)->i.wait_queue = 0; \ (t)->i.private = 0; \ } STMT_END /* * Note that SCHEDULE() is only callable from pp code (which * must be expecting to be restarted). We'll have to do * something a bit different for XS code. */ #define SCHEDULE() return schedule(), PL_op #define MUTEX_LOCK(m) #define MUTEX_UNLOCK(m) #define MUTEX_INIT(m) #define MUTEX_DESTROY(m) #define COND_INIT(c) perl_cond_init(c) #define COND_SIGNAL(c) perl_cond_signal(c) #define COND_BROADCAST(c) perl_cond_broadcast(c) #define COND_WAIT(c, m) \ STMT_START { \ perl_cond_wait(c); \ SCHEDULE(); \ } STMT_END #define COND_DESTROY(c) #define THREAD_CREATE(t, f) f((t)) #define THREAD_POST_CREATE(t) NOOP #define YIELD NOOP /* * Local variables: * c-indentation-style: bsd * c-basic-offset: 4 * indent-tabs-mode: t * End: * * ex: set ts=8 sts=4 sw=4 noet: */