This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | PATH_MAX 1024 |
| maximum length of a full pathname | |
| #define | DATA_BLOCK_SIZE 4096 |
| size of a single datablock written to the database; should be less than the size of a "blob" or mysqlfs.sql needs to be altered | |
| #define | MIN(a, b) ((a) < (b) ? (a) : (b)) |
| basic preprocessor-phase maximum macro | |
| #define | MAX(a, b) ((a) > (b) ? (a) : (b)) |
| basic preprocessor-phase minimum macro | |
Definition in file mysqlfs.h.
| #define DATA_BLOCK_SIZE 4096 |
size of a single datablock written to the database; should be less than the size of a "blob" or mysqlfs.sql needs to be altered
Definition at line 16 of file mysqlfs.h.
Referenced by main(), query_read(), and query_write().
| #define MAX | ( | a, | |||
| b | ) | ((a) > (b) ? (a) : (b)) |
| #define MIN | ( | a, | |||
| b | ) | ((a) < (b) ? (a) : (b)) |
basic preprocessor-phase maximum macro
Definition at line 19 of file mysqlfs.h.
Referenced by query_read().
| #define PATH_MAX 1024 |
maximum length of a full pathname
Definition at line 13 of file mysqlfs.h.
Referenced by query_inode_full(), query_mkdirentry(), query_mknod(), query_rename(), and query_rmdirentry().
1.4.7