3 /* #include <sys/select.h> */
6 * This symbol, if defined, indicates that the ioctl() routine is
7 * available to set I/O characteristics
12 * This symbol, if defined, indicates that the routine utime() is
13 * available to update the access and modification times of files.
15 #define HAS_UTIME /**/
18 * This symbol is defined if Time_t is an unsigned type on this system.
25 #define HAS_WAITPID_RUNTIME (_emx_env & 0x200)
28 * This symbol, if defined, indicates that the getpwnam() and
29 * getpwuid() routines are available to get password entries.
30 * The getpwent() has a separate definition, HAS_GETPWENT.
35 * This symbol, if defined, indicates that the getgrnam() and
36 * getgrgid() routines are available to get group entries.
37 * The getgrent() has a separate definition, HAS_GETGRENT.
40 #define HAS_GETGRENT /* fake */
41 #define HAS_SETGRENT /* fake */
42 #define HAS_ENDGRENT /* fake */
45 * This symbol, if defined, indicates that the program should
46 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
47 * that a file is in "binary" mode -- that is, that no translation
48 * of bytes occurs on read or write operations.
52 #define SOCKET_OPEN_MODE "b"
55 * This symbol holds the type used to declare buffers for information
56 * returned by stat(). It's usually just struct stat. It may be necessary
57 * to include <sys/stat.h> and <sys/types.h> to get any typedef'ed
60 #define Stat_t struct stat
63 * This symbol is defined if this system has a stat structure declaring
66 #define USE_STAT_RDEV /**/
69 * This symbol, if defined, indicates that error messages should be
70 * should be generated in a format that allows the use of the Acme
71 * GUI/editor's autofind feature.
76 * This symbol, if defined, contains a "magic" string which may be used
77 * as the first line of a Perl program designed to be executed directly
78 * by name, instead of the standard Unix #!. If ALTERNATE_SHEBANG
79 * begins with a character other then #, then Perl will only treat
80 * it as a command line if if finds the string "perl" in the first
81 * word; otherwise it's treated as the first line of code in the script.
82 * (IOW, Perl won't hand off to another interpreter via an alternate
83 * shebang sequence that might be legal Perl code.)
85 #define ALTERNATE_SHEBANG "extproc "
88 # define SIGABRT SIGILL
91 # define SIGILL 6 /* blech */
93 #define ABORT() kill(PerlProc_getpid(),SIGABRT);
95 #define BIT_BUCKET "/dev/nul" /* Will this work? */
97 /* Apparently TCPIPV4 defines may be included even with only IAK present */
99 #if !defined(NO_TCPIPV4) && !defined(TCPIPV4)
101 # define TCPIPV4_FORCED /* Just in case */
104 #if defined(I_SYS_UN) && !defined(TCPIPV4)
105 /* It is not working without TCPIPV4 defined. */
111 #define do_spawn(a) os2_do_spawn(aTHX_ (a))
112 #define do_aspawn(a,b,c) os2_do_aspawn(aTHX_ (a),(b),(c))
114 #define OS2_ERROR_ALREADY_POSTED 299 /* Avoid os2.h */
118 #define MUTEX_INIT(m) \
121 if ((rc = _rmutex_create(m,0))) \
122 Perl_croak_nocontext("panic: MUTEX_INIT: rc=%i", rc); \
124 #define MUTEX_LOCK(m) \
127 if ((rc = _rmutex_request(m,_FMR_IGNINT))) \
128 Perl_croak_nocontext("panic: MUTEX_LOCK: rc=%i", rc); \
130 #define MUTEX_UNLOCK(m) \
133 if ((rc = _rmutex_release(m))) \
134 Perl_croak_nocontext("panic: MUTEX_UNLOCK: rc=%i", rc); \
136 #define MUTEX_DESTROY(m) \
139 if ((rc = _rmutex_close(m))) \
140 Perl_croak_nocontext("panic: MUTEX_DESTROY: rc=%i", rc); \
143 #define COND_INIT(c) \
146 if ((rc = DosCreateEventSem(NULL,c,0,0))) \
147 Perl_croak_nocontext("panic: COND_INIT: rc=%i", rc); \
149 #define COND_SIGNAL(c) \
152 if ((rc = DosPostEventSem(*(c))) && rc != OS2_ERROR_ALREADY_POSTED)\
153 Perl_croak_nocontext("panic: COND_SIGNAL, rc=%ld", rc); \
155 #define COND_BROADCAST(c) \
158 if ((rc = DosPostEventSem(*(c))) && rc != OS2_ERROR_ALREADY_POSTED)\
159 Perl_croak_nocontext("panic: COND_BROADCAST, rc=%i", rc); \
161 /* #define COND_WAIT(c, m) \
163 if (WaitForSingleObject(*(c),INFINITE) == WAIT_FAILED) \
164 Perl_croak_nocontext("panic: COND_WAIT"); \
167 #define COND_WAIT(c, m) os2_cond_wait(c,m)
169 #define COND_WAIT_win32(c, m) \
172 if ((rc = SignalObjectAndWait(*(m),*(c),INFINITE,FALSE))) \
173 Perl_croak_nocontext("panic: COND_WAIT"); \
177 #define COND_DESTROY(c) \
180 if ((rc = DosCloseEventSem(*(c)))) \
181 Perl_croak_nocontext("panic: COND_DESTROY, rc=%i", rc); \
183 /*#define THR ((struct thread *) TlsGetValue(PL_thr_key))
186 #ifdef USE_SLOW_THREAD_SPECIFIC
187 # define pthread_getspecific(k) (*_threadstore())
188 # define pthread_setspecific(k,v) (*_threadstore()=v,0)
189 # define pthread_key_create(keyp,flag) (*keyp=_gettid(),0)
190 #else /* USE_SLOW_THREAD_SPECIFIC */
191 # define pthread_getspecific(k) (*(k))
192 # define pthread_setspecific(k,v) (*(k)=(v),0)
193 # define pthread_key_create(keyp,flag) \
194 ( DosAllocThreadLocalMemory(1,(unsigned long**)keyp) \
195 ? Perl_croak_nocontext("LocalMemory"),1 \
198 #endif /* USE_SLOW_THREAD_SPECIFIC */
199 #define pthread_key_delete(keyp)
200 #define pthread_self() _gettid()
201 #define YIELD DosSleep(0)
203 #ifdef PTHREADS_INCLUDED /* For ./x2p stuff. */
204 int pthread_join(pthread_t tid, void **status);
205 int pthread_detach(pthread_t tid);
206 int pthread_create(pthread_t *tid, const pthread_attr_t *attr,
207 void *(*start_routine)(void*), void *arg);
208 #endif /* PTHREAD_INCLUDED */
210 #define THREADS_ELSEWHERE
212 #else /* USE_ITHREADS */
214 #define do_spawn(a) os2_do_spawn(a)
215 #define do_aspawn(a,b,c) os2_do_aspawn((a),(b),(c))
217 void Perl_OS2_init(char **);
218 void Perl_OS2_init3(char **envp, void **excH, int flags);
219 void Perl_OS2_term(void **excH, int exitstatus, int flags);
221 /* The code without INIT3 hideously puts env inside: */
223 /* These ones should be in the same block as PERL_SYS_TERM() */
226 # define PERL_SYS_INIT3(argcp, argvp, envp) \
228 MALLOC_CHECK_TAINT(*argcp, *argvp, *envp) \
229 _response(argcp, argvp); \
230 _wildcard(argcp, argvp); \
231 Perl_OS2_init3(*envp, xreg, 0)
233 # define PERL_SYS_INIT(argcp, argvp) { \
235 _response(argcp, argvp); \
236 _wildcard(argcp, argvp); \
237 Perl_OS2_init3(NULL, xreg, 0)
239 #else /* Compiling embedded Perl or Perl extension */
241 # define PERL_SYS_INIT3(argcp, argvp, envp) \
243 Perl_OS2_init3(*envp, xreg, 0)
244 # define PERL_SYS_INIT(argcp, argvp) { \
246 Perl_OS2_init3(NULL, xreg, 0)
249 #define FORCE_EMX_DEINIT_EXIT 1
250 #define FORCE_EMX_DEINIT_CRT_TERM 2
251 #define FORCE_EMX_DEINIT_RUN_ATEXIT 4
253 #define PERL_SYS_TERM2(xreg,flags) \
254 Perl_OS2_term(xreg, 0, flags); \
257 #define PERL_SYS_TERM1(xreg) \
258 Perl_OS2_term(xreg, 0, FORCE_EMX_DEINIT_RUN_ATEXIT)
260 /* This one should come in pair with PERL_SYS_INIT() and in the same block */
261 #define PERL_SYS_TERM() \
262 PERL_SYS_TERM1(xreg); \
266 # define PERL_CALLCONV _System
269 /* #define PERL_SYS_TERM() STMT_START { \
270 if (Perl_HAB_set) WinTerminate(Perl_hab); } STMT_END */
272 #define dXSUB_SYS OS2_XS_init()
275 /* # define HAS_FORK */
276 /* # define HIDEMYMALLOC */
277 /* # define PERL_SBRK_VIA_MALLOC */ /* gets off-page sbrk... */
278 #else /* !PERL_IS_AOUT */
279 # ifndef PERL_FOR_X2P
281 # define USE_PERL_SBRK
286 # define SYSTEM_ALLOC(a) sys_alloc(a)
288 void *sys_alloc(int size);
290 #endif /* !PERL_IS_AOUT */
291 #if !defined(PERL_CORE) && !defined(PerlIO) /* a2p */
295 /* os2ish is used from a2p/a2p.h without pTHX/pTHX_ first being
296 * defined. Hack around this to get us to compile.
307 #define TMPPATH1 "plXXXXXX"
308 extern const char *tmppath;
309 PerlIO *my_syspopen(pTHX_ char *cmd, char *mode);
310 /* Cannot prototype with I32 at this point. */
311 int my_syspclose(PerlIO *f);
312 FILE *my_tmpfile (void);
313 char *my_tmpnam (char *);
314 int my_mkdir (__const__ char *, long);
315 int my_rmdir (__const__ char *);
316 struct passwd *my_getpwent (void);
317 void my_setpwent (void);
318 void my_endpwent (void);
319 char *gcvt_os2(double value, int digits, char *buffer);
321 extern int async_mssleep(unsigned long ms, int switch_priority);
322 extern unsigned long msCounter(void);
323 extern unsigned long InfoTable(int local);
324 extern unsigned long find_myself(void);
326 #define MAX_SLEEP (((1<30) / (1000/4))-1) /* 1<32 msec */
328 static __inline__ unsigned
329 my_sleep(unsigned sec)
332 while (sec > MAX_SLEEP) {
334 remain = sleep(MAX_SLEEP);
341 #define sleep my_sleep
344 unsigned long DosSleep(unsigned long);
345 unsigned long DosAllocThreadLocalMemory (unsigned long cb, unsigned long **p);
348 struct group *getgrent (void);
349 void setgrent (void);
350 void endgrent (void);
352 struct passwd *my_getpwuid (uid_t);
353 struct passwd *my_getpwnam (__const__ char *);
356 #define L_tmpnam MAXPATHLEN
358 #define tmpfile my_tmpfile
359 #define tmpnam my_tmpnam
360 #define isatty _isterm
362 #define srand srandom
363 #define strtoll _strtoll
364 #define strtoull _strtoull
366 #define usleep(usec) ((void)async_mssleep(((usec)+500)/1000, 500))
370 * fwrite1() should be a routine with the same calling sequence as fwrite(),
371 * but which outputs all of the bytes requested as a single stream (unlike
372 * fwrite() itself, which on some systems outputs several distinct records
373 * if the number_of_items parameter is >1).
375 #define fwrite1 fwrite
377 #define my_getenv(var) getenv(var)
378 #define flock my_flock
379 #define rmdir my_rmdir
380 #define mkdir my_mkdir
381 #define setpwent my_setpwent
382 #define getpwent my_getpwent
383 #define endpwent my_endpwent
384 #define getpwuid my_getpwuid
385 #define getpwnam my_getpwnam
387 void *emx_calloc (size_t, size_t);
388 void emx_free (void *);
389 void *emx_malloc (size_t);
390 void *emx_realloc (void *, size_t);
392 /*****************************************************************************/
394 #include <stdlib.h> /* before the following definitions */
395 #include <unistd.h> /* before the following definitions */
397 #include <sys/stat.h>
399 #define chdir _chdir2
400 #define getcwd _getcwd2
402 /* This guy is needed for quick stdstd */
404 #if defined(USE_STDIO_PTR) && defined(STDIO_PTR_LVALUE) && defined(STDIO_CNT_LVALUE)
405 /* Perl uses ungetc only with successful return */
406 # define ungetc(c,fp) \
407 (FILE_ptr(fp) > FILE_base(fp) && c == (int)*(FILE_ptr(fp) - 1) \
408 ? (--FILE_ptr(fp), ++FILE_cnt(fp), (int)c) : ungetc(c,fp))
411 #define PERLIO_IS_BINMODE_FD(fd) _PERLIO_IS_BINMODE_FD(fd)
421 #include <emx/io.h> /* for _fd_flags() prototype */
424 _PERLIO_IS_BINMODE_FD(int fd)
426 int *pflags = _fd_flags(fd);
428 return pflags && (*pflags) & O_BINARY;
431 /* ctermid is missing from emx0.9d */
432 char *ctermid(char *s);
434 #define OP_BINARY O_BINARY
436 #define OS2_STAT_HACK 1
439 #define Stat(fname,bufptr) os2_stat((fname),(bufptr))
440 #define Fstat(fd,bufptr) os2_fstat((fd),(bufptr))
441 #define Fflush(fp) fflush(fp)
442 #define Mkdir(path,mode) mkdir((path),(mode))
443 #define chmod(path,mode) os2_chmod((path),(mode))
447 #define S_IFBLK 0120000 /* Hacks to make things compile... */
448 #define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
450 int os2_chmod(const char *name, int pmode);
451 int os2_fstat(int handle, struct stat *st);
455 #define Stat(fname,bufptr) stat((fname),(bufptr))
456 #define Fstat(fd,bufptr) fstat((fd),(bufptr))
457 #define Fflush(fp) fflush(fp)
458 #define Mkdir(path,mode) mkdir((path),(mode))
462 /* With SD386 it is impossible to debug register variables. */
463 #if !defined(PERL_IS_AOUT) && defined(DEBUGGING) && !defined(register)
467 /* Our private OS/2 specific data. */
469 typedef struct OS2_Perl_data {
474 unsigned long severity;
475 unsigned long phmq; /* Handle to message queue */
476 unsigned long phmq_refcnt;
477 unsigned long phmq_servers;
478 unsigned long initial_mode; /* VIO etc. mode we were started in */
479 unsigned long morph_refcnt;
482 extern OS2_Perl_data_t OS2_Perl_data;
484 #define Perl_hab ((HAB)OS2_Perl_data.phab)
485 #define Perl_rc (OS2_Perl_data.rc)
486 #define Perl_severity (OS2_Perl_data.severity)
487 #define errno_isOS2 12345678
488 #define errno_isOS2_set 12345679
489 #define OS2_Perl_flags (OS2_Perl_data.flags)
490 #define Perl_HAB_set_f 1
491 #define Perl_HAB_set (OS2_Perl_flags & Perl_HAB_set_f)
492 #define set_Perl_HAB_f (OS2_Perl_flags |= Perl_HAB_set_f)
493 #define set_Perl_HAB(h) (set_Perl_HAB_f, Perl_hab = h)
494 #define _obtain_Perl_HAB (init_PMWIN_entries(), \
495 Perl_hab = (*PMWIN_entries.Initialize)(0), \
496 set_Perl_HAB_f, Perl_hab)
497 #define perl_hab_GET() (Perl_HAB_set ? Perl_hab : _obtain_Perl_HAB)
498 #define Acquire_hab() perl_hab_GET()
499 #define Perl_hmq ((HMQ)OS2_Perl_data.phmq)
500 #define Perl_hmq_refcnt (OS2_Perl_data.phmq_refcnt)
501 #define Perl_hmq_servers (OS2_Perl_data.phmq_servers)
502 #define Perl_os2_initial_mode (OS2_Perl_data.initial_mode)
503 #define Perl_morph_refcnt (OS2_Perl_data.morph_refcnt)
505 unsigned long Perl_hab_GET();
506 unsigned long Perl_Register_MQ(int serve);
507 void Perl_Deregister_MQ(int serve);
508 int Perl_Serve_Messages(int force);
509 /* Cannot prototype with I32 at this point. */
510 int Perl_Process_Messages(int force, long *cntp);
511 char *os2_execname(pTHX);
514 struct PMWIN_entries_t {
515 unsigned long (*Initialize)( unsigned long fsOptions );
516 unsigned long (*CreateMsgQueue)(unsigned long hab, long cmsg);
517 int (*DestroyMsgQueue)(unsigned long hmq);
518 int (*PeekMsg)(unsigned long hab, struct _QMSG *pqmsg,
519 unsigned long hwndFilter, unsigned long msgFilterFirst,
520 unsigned long msgFilterLast, unsigned long fl);
521 int (*GetMsg)(unsigned long hab, struct _QMSG *pqmsg,
522 unsigned long hwndFilter, unsigned long msgFilterFirst,
523 unsigned long msgFilterLast);
524 void * (*DispatchMsg)(unsigned long hab, struct _QMSG *pqmsg);
525 unsigned long (*GetLastError)(unsigned long hab);
526 unsigned long (*CancelShutdown)(unsigned long hmq, unsigned long fCancelAlways);
528 extern struct PMWIN_entries_t PMWIN_entries;
529 void init_PMWIN_entries(void);
531 #define perl_hmq_GET(serve) Perl_Register_MQ(serve)
532 #define perl_hmq_UNSET(serve) Perl_Deregister_MQ(serve)
534 #define OS2_XS_init() (*OS2_Perl_data.xs_init)(aTHX)
536 #if _EMX_CRT_REV_ >= 60
537 # define os2_setsyserrno(rc) (Perl_rc = rc, errno = errno_isOS2_set, \
540 # define os2_setsyserrno(rc) (Perl_rc = rc, errno = errno_isOS2)
543 /* The expressions below return true on error. */
544 /* INCL_DOSERRORS needed. rc should be declared outside. */
545 #define CheckOSError(expr) ((rc = (expr)) ? (FillOSError(rc), rc) : 0)
546 /* INCL_WINERRORS needed. */
547 #define CheckWinError(expr) ((expr) ? 0: (FillWinError, 1))
549 /* This form propagates the return value, setting $^E if needed */
550 #define SaveWinError(expr) ((expr) ? : (FillWinError, 0))
552 /* This form propagates the return value, dieing with $^E if needed */
553 #define SaveCroakWinError(expr,die,name1,name2) \
554 ((expr) ? : (CroakWinError(die,name1 name2), 0))
556 #define FillOSError(rc) (os2_setsyserrno(rc), \
557 Perl_severity = SEVERITY_ERROR)
559 #define WinError_2_Perl_rc \
560 ( init_PMWIN_entries(), \
561 Perl_rc=(*PMWIN_entries.GetLastError)(perl_hab_GET()) )
563 /* Calling WinGetLastError() resets the error code of the current thread.
564 Since for some Win* API return value 0 is normal, one needs to call
565 this before calling them to distinguish normal and anomalous returns. */
566 /*#define ResetWinError() WinError_2_Perl_rc */
568 /* At this moment init_PMWIN_entries() should be a nop (WinInitialize should
569 be called already, right?), so we do not risk stepping over our own error */
570 #define FillWinError ( WinError_2_Perl_rc, \
571 Perl_severity = ERRORIDSEV(Perl_rc), \
572 Perl_rc = ERRORIDERROR(Perl_rc), \
573 os2_setsyserrno(Perl_rc))
575 #define STATIC_FILE_LENGTH 127
577 /* This should match loadOrdinals[] array in os2.c */
578 enum entries_ordinals {
579 ORD_DosQueryExtLibpath,
580 ORD_DosSetExtLibpath,
595 ORD_WinCreateMsgQueue,
596 ORD_WinDestroyMsgQueue,
601 ORD_WinCancelShutdown,
603 ORD_RexxVariablePool,
604 ORD_RexxRegisterFunctionExe,
605 ORD_RexxDeregisterFunction,
607 ORD_PRF32QUERYPROFILESIZE,
608 ORD_PRF32OPENPROFILE,
609 ORD_PRF32CLOSEPROFILE,
610 ORD_PRF32QUERYPROFILE,
612 ORD_PRF32QUERYPROFILEDATA,
613 ORD_PRF32WRITEPROFILEDATA,
615 ORD_WinChangeSwitchEntry,
616 ORD_WinQuerySwitchEntry,
617 ORD_WinQuerySwitchHandle,
618 ORD_WinQuerySwitchList,
619 ORD_WinSwitchToProgram,
620 ORD_WinBeginEnumWindows,
621 ORD_WinEndEnumWindows,
623 ORD_WinGetNextWindow,
625 ORD_WinQueryActiveWindow,
626 ORD_WinQueryClassName,
629 ORD_WinQueryWindowPos,
630 ORD_WinQueryWindowProcess,
631 ORD_WinQueryWindowText,
632 ORD_WinQueryWindowTextLength,
635 ORD_WinSetWindowText,
639 ORD_WinWindowFromPoint,
642 ORD_WinEnableWindowUpdate,
643 ORD_WinIsWindowEnabled,
644 ORD_WinIsWindowShowing,
645 ORD_WinIsWindowVisible,
646 ORD_WinQueryWindowPtr,
647 ORD_WinQueryWindowULong,
648 ORD_WinQueryWindowUShort,
649 ORD_WinSetWindowBits,
651 ORD_WinSetWindowULong,
652 ORD_WinSetWindowUShort,
653 ORD_WinQueryDesktopWindow,
654 ORD_WinSetActiveWindow,
655 ORD_DosQueryModFromEIP,
656 ORD_Dos32QueryHeaderInfo,
659 ORD_WinQueryActiveDesktopPathname,
660 ORD_WinInvalidateRect,
661 ORD_WinCreateFrameControls,
662 ORD_WinQueryClipbrdFmtInfo,
663 ORD_WinQueryClipbrdOwner,
664 ORD_WinQueryClipbrdViewer,
665 ORD_WinQueryClipbrdData,
668 ORD_WinSetClipbrdData,
669 ORD_WinSetClipbrdOwner,
670 ORD_WinSetClipbrdViewer,
671 ORD_WinEnumClipbrdFmts,
676 ORD_WinQueryAtomUsage,
677 ORD_WinQueryAtomName,
678 ORD_WinQueryAtomLength,
679 ORD_WinQuerySystemAtomTable,
680 ORD_WinCreateAtomTable,
681 ORD_WinDestroyAtomTable,
688 ORD_WinQuerySysValue,
693 ORD_WinQuerySysPointer,
694 ORD_DosReplaceModule,
696 ORD_RexxRegisterSubcomExe,
700 /* RET: return type, AT: argument signature in (), ARGS: should be in () */
701 #define CallORD(ret,o,at,args) (((ret (*)at) loadByOrdinal(o, 1))args)
702 #define DeclFuncByORD(ret,name,o,at,args) \
703 ret name at { return CallORD(ret,o,at,args); }
704 #define DeclVoidFuncByORD(name,o,at,args) \
705 void name at { CallORD(void,o,at,args); }
707 /* This function returns error code on error, and saves the error info in $^E and Perl_rc */
708 #define DeclOSFuncByORD_native(ret,name,o,at,args) \
709 ret name at { unsigned long rc; return CheckOSError(CallORD(ret,o,at,args)); }
711 /* These functions return false on error, and save the error info in $^E and Perl_rc */
712 #define DeclOSFuncByORD(ret,name,o,at,args) \
713 ret name at { unsigned long rc; return !CheckOSError(CallORD(ret,o,at,args)); }
714 #define DeclWinFuncByORD(ret,name,o,at,args) \
715 ret name at { return SaveWinError(CallORD(ret,o,at,args)); }
717 #define AssignFuncPByORD(p,o) (*(Perl_PFN*)&(p) = (loadByOrdinal(o, 1)))
719 /* This flavor caches the procedure pointer (named as p__Win#name) locally */
720 #define DeclWinFuncByORD_CACHE(ret,name,o,at,args) \
721 DeclWinFuncByORD_CACHE_r(ret,name,o,at,args,0,1)
723 /* This flavor may reset the last error before the call (if ret=0 may be OK) */
724 #define DeclWinFuncByORD_CACHE_resetError(ret,name,o,at,args) \
725 DeclWinFuncByORD_CACHE_r(ret,name,o,at,args,1,1)
727 /* Two flavors below do the same as above, but do not auto-croak */
728 /* This flavor caches the procedure pointer (named as p__Win#name) locally */
729 #define DeclWinFuncByORD_CACHE_survive(ret,name,o,at,args) \
730 DeclWinFuncByORD_CACHE_r(ret,name,o,at,args,0,0)
732 /* This flavor may reset the last error before the call (if ret=0 may be OK) */
733 #define DeclWinFuncByORD_CACHE_resetError_survive(ret,name,o,at,args) \
734 DeclWinFuncByORD_CACHE_r(ret,name,o,at,args,1,0)
736 #define DeclWinFuncByORD_CACHE_r(ret,name,o,at,args,r,die) \
737 static ret (*CAT2(p__Win,name)) at; \
738 static ret name at { \
739 if (!CAT2(p__Win,name)) \
740 AssignFuncPByORD(CAT2(p__Win,name), o); \
741 if (r) ResetWinError(); \
742 return SaveCroakWinError(CAT2(p__Win,name) args, die, "[Win]", STRINGIFY(name)); }
744 /* These flavors additionally assume ORD is name with prepended ORD_Win */
745 #define DeclWinFunc_CACHE(ret,name,at,args) \
746 DeclWinFuncByORD_CACHE(ret,name,CAT2(ORD_Win,name),at,args)
747 #define DeclWinFunc_CACHE_resetError(ret,name,at,args) \
748 DeclWinFuncByORD_CACHE_resetError(ret,name,CAT2(ORD_Win,name),at,args)
749 #define DeclWinFunc_CACHE_survive(ret,name,at,args) \
750 DeclWinFuncByORD_CACHE_survive(ret,name,CAT2(ORD_Win,name),at,args)
751 #define DeclWinFunc_CACHE_resetError_survive(ret,name,at,args) \
752 DeclWinFuncByORD_CACHE_resetError_survive(ret,name,CAT2(ORD_Win,name),at,args)
754 void ResetWinError(void);
755 void CroakWinError(int die, char *name);
757 enum Perlos2_handler {
758 Perlos2_handler_mangle = 1,
759 Perlos2_handler_perl_sh,
760 Perlos2_handler_perllib_from,
761 Perlos2_handler_perllib_to,
765 dir_subst_pathlike = 2
768 extern int Perl_OS2_handler_install(void *handler, enum Perlos2_handler how);
769 extern char *dir_subst(char *s, unsigned int l, char *b, unsigned int bl, enum dir_subst_e flags, char *msg);
770 extern unsigned long fill_extLibpath(int type, char *pre, char *post, int replace, char *msg);
772 #define PERLLIB_MANGLE(s, n) perllib_mangle((s), (n))
773 char *perllib_mangle(char *, unsigned int);
775 #define fork fork_with_resources
777 #ifdef EINTR /* x2p do not include perl.h!!! */
778 static __inline__ int
779 my_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout)
781 if (nfds == 0 && timeout && (_emx_env & 0x200)) {
782 if (async_mssleep(1000 * timeout->tv_sec + (timeout->tv_usec + 500)/1000, 500))
787 return select(nfds, readfds, writefds, exceptfds, timeout);
790 #define select my_select
794 typedef int (*Perl_PFN)();
795 Perl_PFN loadByOrdinal(enum entries_ordinals ord, int fail);
796 extern const Perl_PFN * const pExtFCN;
797 char *os2error(int rc);
798 int os2_stat(const char *name, struct stat *st);
799 int fork_with_resources();
800 int setpriority(int which, int pid, int val);
801 int getpriority(int which /* ignored */, int pid);
803 void croak_with_os2error(char *s) __attribute__((noreturn));
805 /* void return value */
806 #define os2cp_croak(rc,msg) (CheckOSError(rc) && (croak_with_os2error(msg),0))
809 #define os2win_croak(rc,msg) \
810 SaveCroakWinError((expr), 1 /* die */, /* no prefix */, (msg))
812 /* propagates rc; use with functions which may return 0 on success */
813 #define os2win_croak_0OK(rc,msg) \
814 SaveCroakWinError((ResetWinError, (expr)), \
815 1 /* die */, /* no prefix */, (msg))
818 int os2_do_spawn(pTHX_ char *cmd);
819 int os2_do_aspawn(pTHX_ SV *really, SV **vmark, SV **vsp);
824 /* Replacement for syslog.h */
825 # define LOG_EMERG 0 /* system is unusable */
826 # define LOG_ALERT 1 /* action must be taken immediately */
827 # define LOG_CRIT 2 /* critical conditions */
828 # define LOG_ERR 3 /* error conditions */
829 # define LOG_WARNING 4 /* warning conditions */
830 # define LOG_NOTICE 5 /* normal but significant condition */
831 # define LOG_INFO 6 /* informational */
832 # define LOG_DEBUG 7 /* debug-level messages */
834 # define LOG_PRIMASK 0x007 /* mask to extract priority part (internal) */
835 /* extract priority */
836 # define LOG_PRI(p) ((p) & LOG_PRIMASK)
837 # define LOG_MAKEPRI(fac, pri) (((fac) << 3) | (pri))
840 # define LOG_KERN (0<<3) /* kernel messages */
841 # define LOG_USER (1<<3) /* random user-level messages */
842 # define LOG_MAIL (2<<3) /* mail system */
843 # define LOG_DAEMON (3<<3) /* system daemons */
844 # define LOG_AUTH (4<<3) /* security/authorization messages */
845 # define LOG_SYSLOG (5<<3) /* messages generated internally by syslogd */
846 # define LOG_LPR (6<<3) /* line printer subsystem */
847 # define LOG_NEWS (7<<3) /* network news subsystem */
848 # define LOG_UUCP (8<<3) /* UUCP subsystem */
849 # define LOG_CRON (15<<3) /* clock daemon */
850 /* other codes through 15 reserved for system use */
851 # define LOG_LOCAL0 (16<<3) /* reserved for local use */
852 # define LOG_LOCAL1 (17<<3) /* reserved for local use */
853 # define LOG_LOCAL2 (18<<3) /* reserved for local use */
854 # define LOG_LOCAL3 (19<<3) /* reserved for local use */
855 # define LOG_LOCAL4 (20<<3) /* reserved for local use */
856 # define LOG_LOCAL5 (21<<3) /* reserved for local use */
857 # define LOG_LOCAL6 (22<<3) /* reserved for local use */
858 # define LOG_LOCAL7 (23<<3) /* reserved for local use */
860 # define LOG_NFACILITIES 24 /* current number of facilities */
861 # define LOG_FACMASK 0x03f8 /* mask to extract facility part */
862 /* facility of pri */
863 # define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3)
866 * arguments to setlogmask.
868 # define LOG_MASK(pri) (1 << (pri)) /* mask for one priority */
869 # define LOG_UPTO(pri) ((1 << ((pri)+1)) - 1) /* all priorities through pri */
872 * Option flags for openlog.
874 * LOG_ODELAY no longer does anything.
875 * LOG_NDELAY is the inverse of what it used to be.
877 # define LOG_PID 0x01 /* log the pid with each message */
878 # define LOG_CONS 0x02 /* log on the console if errors in sending */
879 # define LOG_ODELAY 0x04 /* delay open until first syslog() (default) */
880 # define LOG_NDELAY 0x08 /* don't delay open */
881 # define LOG_NOWAIT 0x10 /* don't wait for console forks: DEPRECATED */
882 # define LOG_PERROR 0x20 /* log to stderr as well */
886 /* ************************************************* */
887 #ifndef MAKEPLINFOSEG
889 /* From $DDK\base32\rel\os2c\include\base\os2\16bit\infoseg.h + typedefs */
892 * The structure below defines the content and organization of the system
893 * information segment (InfoSeg). The actual table is statically defined in
894 * SDATA.ASM. Ring 0, read/write access is obtained by the clock device
895 * driver using the DevHlp GetDOSVar function. (GetDOSVar returns a ring 0,
896 * read-only selector to all other requestors.)
898 * In order to prevent an errant process from destroying the infoseg, two
899 * identical global infosegs are maintained. One is in the tiled shared
900 * arena and is accessible in user mode (and therefore can potentially be
901 * overwritten from ring 2), and the other is in the system arena and is
902 * accessible only in kernel mode. All kernel code (except the clock driver)
903 * is responsible for updating BOTH copies of the infoseg. The copy kept
904 * in the system arena is addressable as DOSGROUP:SISData, and the copy
905 * in the shared arena is addressable via a system arena alias. 16:16 and
906 * 0:32 pointers to the alias are stored in _Sis2.
909 typedef struct InfoSegGDT {
911 /* Time (offset 0x00) */
913 unsigned long SIS_BigTime; /* Time from 1-1-1970 in seconds */
914 unsigned long SIS_MsCount; /* Freerunning milliseconds counter */
915 unsigned char SIS_HrsTime; /* Hours */
916 unsigned char SIS_MinTime; /* Minutes */
917 unsigned char SIS_SecTime; /* Seconds */
918 unsigned char SIS_HunTime; /* Hundredths of seconds */
919 unsigned short SIS_TimeZone; /* Timezone in min from GMT (Set to EST) */
920 unsigned short SIS_ClkIntrvl; /* Timer interval (units=0.0001 secs) */
922 /* Date (offset 0x10) */
924 unsigned char SIS_DayDate; /* Day-of-month (1-31) */
925 unsigned char SIS_MonDate; /* Month (1-12) */
926 unsigned short SIS_YrsDate; /* Year (>= 1980) */
927 unsigned char SIS_DOWDate; /* Day-of-week (1-1-80 = Tues = 3) */
929 /* Version (offset 0x15) */
931 unsigned char SIS_VerMajor; /* Major version number */
932 unsigned char SIS_VerMinor; /* Minor version number */
933 unsigned char SIS_RevLettr; /* Revision letter */
935 /* System Status (offset 0x18) */
937 unsigned char SIS_CurScrnGrp; /* Fgnd screen group # */
938 unsigned char SIS_MaxScrnGrp; /* Maximum number of screen groups */
939 unsigned char SIS_HugeShfCnt; /* Shift count for huge segments */
940 unsigned char SIS_ProtMdOnly; /* Protect-mode-only indicator */
941 unsigned short SIS_FgndPID; /* Foreground process ID */
943 /* Scheduler Parms (offset 0x1E) */
945 unsigned char SIS_Dynamic; /* Dynamic variation flag (1=enabled) */
946 unsigned char SIS_MaxWait; /* Maxwait (seconds) */
947 unsigned short SIS_MinSlice; /* Minimum timeslice (milliseconds) */
948 unsigned short SIS_MaxSlice; /* Maximum timeslice (milliseconds) */
950 /* Boot Drive (offset 0x24) */
952 unsigned short SIS_BootDrv; /* Drive from which system was booted */
954 /* RAS Major Event Code Table (offset 0x26) */
956 unsigned char SIS_mec_table[32]; /* Table of RAS Major Event Codes (MECs) */
958 /* Additional Session Data (offset 0x46) */
960 unsigned char SIS_MaxVioWinSG; /* Max. no. of VIO windowable SG's */
961 unsigned char SIS_MaxPresMgrSG; /* Max. no. of Presentation Manager SG's */
963 /* Error logging Information (offset 0x48) */
965 unsigned short SIS_SysLog; /* Error Logging Status */
967 /* Additional RAS Information (offset 0x4A) */
969 unsigned short SIS_MMIOBase; /* Memory mapped I/O selector */
970 unsigned long SIS_MMIOAddr; /* Memory mapped I/O address */
972 /* Additional 2.0 Data (offset 0x50) */
974 unsigned char SIS_MaxVDMs; /* Max. no. of Virtual DOS machines */
975 unsigned char SIS_Reserved;
977 unsigned char SIS_perf_mec_table[32]; /* varga 6/5/97 Table of Perfomance Major Event Codes (MECS) varga*/
978 } GINFOSEG, *PGINFOSEG;
980 #define SIS_LEN sizeof(struct InfoSegGDT)
983 * InfoSeg LDT Data Segment Structure
985 * The structure below defines the content and organization of the system
986 * information in a special per-process segment to be accessible by the
987 * process through the LDT (read-only).
989 * As in the global infoseg, two copies of the current processes local
990 * infoseg exist, one accessible in both user and kernel mode, the other
991 * only in kernel mode. Kernel code is responsible for updating BOTH copies.
992 * Pointers to the local infoseg copy are stored in _Lis2.
994 * Note that only the currently running process has an extra copy of the
995 * local infoseg. The copy is done at context switch time.
998 typedef struct InfoSegLDT {
999 unsigned short LIS_CurProcID; /* Current process ID */
1000 unsigned short LIS_ParProcID; /* Process ID of parent */
1001 unsigned short LIS_CurThrdPri; /* Current thread priority */
1002 unsigned short LIS_CurThrdID; /* Current thread ID */
1003 unsigned short LIS_CurScrnGrp; /* Screengroup */
1004 unsigned char LIS_ProcStatus; /* Process status bits */
1005 unsigned char LIS_fillbyte1; /* filler byte */
1006 unsigned short LIS_Fgnd; /* Current process is in foreground */
1007 unsigned char LIS_ProcType; /* Current process type */
1008 unsigned char LIS_fillbyte2; /* filler byte */
1010 unsigned short LIS_AX; /* @@V1 Environment selector */
1011 unsigned short LIS_BX; /* @@V1 Offset of command line start */
1012 unsigned short LIS_CX; /* @@V1 Length of Data Segment */
1013 unsigned short LIS_DX; /* @@V1 STACKSIZE from the .EXE file */
1014 unsigned short LIS_SI; /* @@V1 HEAPSIZE from the .EXE file */
1015 unsigned short LIS_DI; /* @@V1 Module handle of the application */
1016 unsigned short LIS_DS; /* @@V1 Data Segment Handle of application */
1018 unsigned short LIS_PackSel; /* First tiled selector in this EXE */
1019 unsigned short LIS_PackShrSel; /* First selector above shared arena */
1020 unsigned short LIS_PackPckSel; /* First selector above packed arena */
1022 unsigned long LIS_pTIB; /* Pointer to TIB */
1023 unsigned long LIS_pPIB; /* Pointer to PIB */
1025 } LINFOSEG, *PLINFOSEG;
1027 #define LIS_LEN sizeof(struct InfoSegLDT)
1031 * Process Type codes
1033 * These are the definitons for the codes stored
1034 * in the LIS_ProcType field in the local infoseg.
1037 #define LIS_PT_FULLSCRN 0 /* Full screen app. */
1038 #define LIS_PT_REALMODE 1 /* Real mode process */
1039 #define LIS_PT_VIOWIN 2 /* VIO windowable app. */
1040 #define LIS_PT_PRESMGR 3 /* Presentation Manager app. */
1041 #define LIS_PT_DETACHED 4 /* Detached app. */
1046 * Process Status Bit Definitions
1050 #define LIS_PS_EXITLIST 0x01 /* In exitlist handler */
1054 * Flags equates for the Global Info Segment
1055 * SIS_SysLog WORD in Global Info Segment
1057 * xxxx xxxx xxxx xxx0 Error Logging Disabled
1058 * xxxx xxxx xxxx xxx1 Error Logging Enabled
1060 * xxxx xxxx xxxx xx0x Error Logging not available
1061 * xxxx xxxx xxxx xx1x Error Logging available
1064 #define LF_LOGENABLE 0x0001 /* Logging enabled */
1065 #define LF_LOGAVAILABLE 0x0002 /* Logging available */
1067 #define MAKEPGINFOSEG(sel) ((PGINFOSEG)MAKEP(sel, 0))
1068 #define MAKEPLINFOSEG(sel) ((PLINFOSEG)MAKEP(sel, 0))
1070 #endif /* ndef(MAKEPLINFOSEG) */
1072 /* ************************************************************ */
1073 #define Dos32QuerySysState DosQuerySysState
1074 #define QuerySysState(flags, pid, buf, bufsz) \
1075 Dos32QuerySysState(flags, 0, pid, 0, buf, bufsz)
1077 #define QSS_PROCESS 1
1078 #define QSS_MODULE 4
1079 #define QSS_SEMAPHORES 2
1080 #define QSS_FILE 8 /* Buggy until fixpack18 */
1081 #define QSS_SHARED 16
1085 APIRET APIENTRY Dos32QuerySysState(ULONG func,ULONG arg1,ULONG pid,
1086 ULONG _res_,PVOID buf,ULONG bufsz);
1091 } QGLOBAL, *PQGLOBAL;
1102 UCHAR _reserved1_; /* padding to ULONG */
1103 USHORT _reserved2_; /* padding to ULONG */
1104 } QTHREAD, *PQTHREAD;
1119 typedef struct qfile {
1147 } QPROCESS, *PQPROCESS;
1149 typedef struct sema {
1166 } QSEMSTRUC, *PQSEMSTRUC;
1171 } QSEMOWNER32, *PQSEMOWNER32;
1176 PVOID semrecs; /* array of associated sema's */
1180 USHORT _reserved_; /* padding to ULONG */
1181 } QSEMSMUX32, *PQSEMSMUX32;
1189 } QSEMEV32, *PQSEMEV32;
1198 USHORT _reserved_; /* padding to ULONG */
1199 } QSEMMUX32, *PQSEMMUX32;
1201 typedef struct semstr32 {
1202 struct semstr *next;
1206 } QSEMSTRUC32, *PQSEMSTRUC32;
1208 typedef struct shrmem {
1209 struct shrmem *next;
1214 } QSHRMEM, *PQSHRMEM;
1216 typedef struct module {
1217 struct module *next;
1225 } QMODULE, *PQMODULE;
1230 PQSEMSTRUC semadata;
1231 PQSEMSTRUC32 sem32data;
1232 PQSHRMEM shrmemdata;
1236 } QTOPLEVEL, *PQTOPLEVEL;
1237 /* ************************************************************ */
1239 PQTOPLEVEL get_sysinfo(ULONG pid, ULONG flags);