mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
- Extended ipc tests - Need to copy from ktcb-to-ktcb instead of ktcb-to-user - Need to check flags of both ipc parties before ipc copy type.
28 lines
509 B
C
28 lines
509 B
C
#ifndef __TEST0_TESTS_H__
|
|
#define __TEST0_TESTS_H__
|
|
|
|
#define __TASKNAME__ "test0"
|
|
|
|
//#define TEST_VERBOSE_PRINT
|
|
#if defined (TEST_VERBOSE_PRINT)
|
|
#define test_printf(...) printf(__VA_ARGS__)
|
|
#else
|
|
#define test_printf(...)
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
extern pid_t parent_of_all;
|
|
|
|
void ipc_full_test(void);
|
|
void ipc_extended_test(void);
|
|
|
|
int shmtest(void);
|
|
int forktest(void);
|
|
int mmaptest(void);
|
|
int dirtest(void);
|
|
int fileio(void);
|
|
int clonetest(void);
|
|
int exectest(void);
|
|
|
|
#endif /* __TEST0_TESTS_H__ */
|