forked from KolibriOS/kolibrios
Adding menuetlibc back to its place in /programs/develop/libraries
This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
34
programs/develop/libraries/menuetlibc/include/itc.h
Normal file
34
programs/develop/libraries/menuetlibc/include/itc.h
Normal file
@@ -0,0 +1,34 @@
|
||||
#ifndef __ITC_H
|
||||
#define __ITC_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include<stdlib.h>
|
||||
|
||||
#define MSG_BUF_SZ 128
|
||||
|
||||
typedef struct __itc_msg_t
|
||||
{
|
||||
char msgbuf[MSG_BUF_SZ];
|
||||
int sender_tid;
|
||||
struct __itc_msg_t * next;
|
||||
} itc_msg_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
itc_msg_t * head;
|
||||
int count;
|
||||
} itc_msgq_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char * name;
|
||||
int real_pid;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user