diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1996-12-18 18:30:35 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1996-12-19 16:44:00 +1200 |
commit | df3ef7a9a68db503d1aecd7cb40d5f974fa0066b (patch) | |
tree | 3bd7431c5670f1aad273881b0d060c9821758fd5 /os2/os2ish.h | |
parent | 055be0b80e0d5ab4109104cbf7a5f5379033e671 (diff) | |
download | perl-df3ef7a9a68db503d1aecd7cb40d5f974fa0066b.tar.gz |
OS/2 updates from Ilya
Diffstat (limited to 'os2/os2ish.h')
-rw-r--r-- | os2/os2ish.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/os2/os2ish.h b/os2/os2ish.h index d83503d9b9..cf945f36d3 100644 --- a/os2/os2ish.h +++ b/os2/os2ish.h @@ -109,6 +109,11 @@ char *my_tmpnam (char *); #define my_getenv(var) getenv(var) +void *emx_calloc (size_t, size_t); +void emx_free (void *); +void *emx_malloc (size_t); +void *emx_realloc (void *, size_t); + /*****************************************************************************/ #include <stdlib.h> /* before the following definitions */ @@ -203,8 +208,8 @@ char *os2error(int rc); Dos32QuerySysState(flags, 0, pid, 0, buf, bufsz) #define QSS_PROCESS 1 -#define QSS_MODULE 2 -#define QSS_SEMAPHORES 4 +#define QSS_MODULE 4 +#define QSS_SEMAPHORES 2 #define QSS_FILE 8 /* Buggy until fixpack18 */ #define QSS_SHARED 16 |