Postfix3.3.1
全て データ構造 ファイル 関数 変数 型定義 マクロ定義
マクロ定義 | 関数
fifo_rdonly_bug.c ファイル
#include <sys_defs.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>

[ソースコード]

マクロ定義

#define FIFO_PATH   "test-fifo"
 
#define TRIGGER_DELAY   5
 
#define perrorexit(s)   { perror(s); exit(1); }
 

関数

int main (int unused_argc, char **unused_argv)
 

マクロ定義詳解

#define FIFO_PATH   "test-fifo"

fifo_rdonly_bug.c36 行目に定義があります。

#define perrorexit (   s)    { perror(s); exit(1); }

fifo_rdonly_bug.c39 行目に定義があります。

#define TRIGGER_DELAY   5

fifo_rdonly_bug.c37 行目に定義があります。

関数詳解

int main ( int  unused_argc,
char **  unused_argv 
)

fifo_rdonly_bug.c72 行目に定義があります。