mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
Increased inode block pointers to 40. The current maximum allowed (and checked). Updates to file size after every file write ensures subsequent writes can correctly operate using updated file size information (i.e. not try to add more pages that are already present). We cannot do this inside write() because directory writes rely on byte-granularity updates on file buffers, whereas file updates are by page-granularity (currently).
16 lines
273 B
C
16 lines
273 B
C
#ifndef __TEST0_TESTS_H__
|
|
#define __TEST0_TESTS_H__
|
|
|
|
#define __TASKNAME__ "test0"
|
|
|
|
int shmtest(void);
|
|
int forktest(void);
|
|
int mmaptest(void);
|
|
int dirtest(void);
|
|
int fileio(void);
|
|
int fileio2(void);
|
|
int clonetest(void);
|
|
int exectest(void);
|
|
|
|
#endif /* __TEST0_TESTS_H__ */
|