X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Finternals%2F_PDCLIB_config.h;h=ef8dea4355d793f183ab4cf1b829a0bbc324f49d;hb=d9dcf16664c81809258992e1653ecb68c8079974;hp=41fe02cb3f62711e2ee40b482ef3adc66f3137f7;hpb=9489b93733c00be5a94e2ee5b349457c78184a1a;p=pdclib.old diff --git a/platform/example/internals/_PDCLIB_config.h b/platform/example/internals/_PDCLIB_config.h index 41fe02c..ef8dea4 100644 --- a/platform/example/internals/_PDCLIB_config.h +++ b/platform/example/internals/_PDCLIB_config.h @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* Internal PDCLib configuration <_PDCLIB_config.h> (Generic Template) @@ -28,6 +26,12 @@ /* specific platforms, e.g. by swapping int instead of char. */ #define _PDCLIB_memswp( i, j, size ) char tmp; do { tmp = *i; *i++ = *j; *j++ = tmp; } while ( --size ); +/* Define this to some compiler directive that can be written after the */ +/* parameter list of a function declaration to indicate the function does */ +/* never return. If your compiler does not support such a directive, define */ +/* to nothing. (This is to avoid warnings with the exit functions under GCC.) */ +#define _PDCLIB_NORETURN __attribute__(( noreturn )) + /* -------------------------------------------------------------------------- */ /* Integers */ /* -------------------------------------------------------------------------- */ @@ -201,15 +205,12 @@ typedef char * _PDCLIB_va_list; #define _PDCLIB_va_start( ap, parmN ) ( (ap) = (char *) &parmN + ( _PDCLIB_va_round(parmN) ), (void)0 ) /* -------------------------------------------------------------------------- */ -/* OS "glue" */ -/* This is where PDCLib interfaces with the operating system. The examples */ -/* below are POSIX calls; provide your OS' equivalents. */ +/* OS "glue", part 1 */ +/* These are values and data type definitions that you would have to adapt to */ +/* the capabilities and requirements of your OS. */ +/* The actual *functions* of the OS interface are declared in _PDCLIB_glue.h. */ /* -------------------------------------------------------------------------- */ -/* A system call that terminates the calling process */ -void _exit( int status ) __attribute__(( noreturn )); -#define _PDCLIB_Exit( x ) _exit( x ) - /* Memory management */ /* Set this to the page size of your OS. If your OS does not support paging, set @@ -223,9 +224,24 @@ void _exit( int status ) __attribute__(( noreturn )); */ #define _PDCLIB_MINALLOC 8 -/* Request another x pages (of size _PDCLIB_PAGESIZE) of memory from the kernel, - or release them back to the kernel if n is negative. - Return a (void *) pointing to the former end-of-heap if successful, NULL - otherwise. -*/ -void * _PDCLIB_allocpages( int n ); +/* I/O */ + +/* The unique file descriptor returned by _PDCLIB_open(). */ +typedef int _PDCLIB_fd_t; + +/* A type in which to store file offsets. See fgetpos() / fsetpos(). */ +typedef struct +{ + int position; + int parse_state; +} _PDCLIB_fpos_t; + +/* The mode flags used in calls to _PDCLIB_open(). */ +enum _PDCLIB_iomode_e +{ + _PDCLIB_io_read = 1, + _PDCLIB_io_write = 2, + _PDCLIB_io_append = 4, + _PDCLIB_io_create = 8, + _PDCLIB_io_truncate = 16, +};