File: proto.h

package info (click to toggle)
dbench 1.3-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,296 kB
  • ctags: 221
  • sloc: ansic: 1,161; makefile: 91; awk: 59
file content (49 lines) | stat: -rw-r--r-- 1,832 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* This file is automatically generated with "make proto". DO NOT EDIT */

void child_run(int client);
void sync_parent(char *fname);
void nb_setup(int client);
void nb_unlink(char *fname);
void expand_file(int fd, int size);
void nb_open(char *fname, int handle, int size);
void nb_write(int handle, int size, int offset);
void nb_read(int handle, int size, int offset);
void nb_close(int handle);
void nb_mkdir(char *fname);
void nb_rmdir(char *fname);
void nb_rename(char *old, char *new);
void nb_stat(char *fname, int size);
void nb_create(char *fname, int size);
void do_unlink(char *fname);
void expand_file(int fd, int size);
void do_open(char *fname, int handle, int size);
void do_write(int handle, int size, int offset);
void do_read(int handle, int size, int offset);
void do_close(int handle);
void do_mkdir(char *fname);
void do_rmdir(char *fname);
void do_rename(char *old, char *new);
void do_stat(char *fname, int size);
void do_create(char *fname, int size);
void nb_setup(int client);
void nb_unlink(char *fname);
void nb_open(char *fname, int handle, int size);
void nb_write(int handle, int size, int offset);
void nb_read(int handle, int size, int offset);
void nb_close(int handle);
void nb_mkdir(char *fname);
void nb_rmdir(char *fname);
void nb_rename(char *old, char *new);
void nb_stat(char *fname, int size);
void nb_create(char *fname, int size);
int open_socket_in(int type, int port, uint32 socket_addr);
int open_socket_out(char *host, int port);
void set_socket_options(int fd, char *options);
int read_sock(int s, char *buf, int size);
int write_sock(int s, char *buf, int size);
void start_timer(void);
double end_timer(void);
void *shm_setup(int size);
void strupper(char *s);
void all_string_sub(char *s,const char *pattern,const char *insert);
BOOL next_token(char **ptr,char *buff,char *sep);