Displaying 2 results from an estimated 2 matches for "pipe_pid".
Did you mean:
pipe_id
2013 Sep 11
2
[LLVMdev] Why a function pointer field in a LLVM IR struct is replaced by {}*?
...unsigned char *mustbezero_1;
unsigned char *wbase;
size_t (*read)(FILE *, unsigned char *, size_t);
size_t (*write)(FILE *, const unsigned char *, size_t);
off_t (*seek)(FILE *, off_t, int);
unsigned char *buf;
size_t buf_size;
FILE *prev, *next;
int fd;
int pipe_pid;
long lockcount;
short dummy3;
signed char mode;
signed char lbf;
int lock;
int waiters;
void *cookie;
off_t off;
char *getln_buf;
void *mustbezero_2;
unsigned char *shend;
off_t shlim, shcnt;};
was represented by
%struct.__FILE_s = type { i32, i8*,...
2013 Sep 11
0
[LLVMdev] Why a function pointer field in a LLVM IR struct is replaced by {}*?
...signed char *wbase;
> size_t (*read)(FILE *, unsigned char *, size_t);
> size_t (*write)(FILE *, const unsigned char *, size_t);
> off_t (*seek)(FILE *, off_t, int);
> unsigned char *buf;
> size_t buf_size;
> FILE *prev, *next;
> int fd;
> int pipe_pid;
> long lockcount;
> short dummy3;
> signed char mode;
> signed char lbf;
> int lock;
> int waiters;
> void *cookie;
> off_t off;
> char *getln_buf;
> void *mustbezero_2;
> unsigned char *shend;
> off_t shlim, shcnt...