atm_dce_db.h

来自「linux thread programe」· C头文件 代码 · 共 43 行

H
43
字号
/******************************************************** * An example source module to accompany... * * "Using POSIX Threads: Programming with Pthreads" *     by Brad nichols, Dick Buttlar, Jackie Farrell *     O'Reilly & Associates, Inc. * ******************************************************** * atm_dce_db.h * * Include file for database module of example atm program. */#define MAX_NUM_ACCOUNTS  240 #define CPU_LOOP_SIZE     325000typedef struct {  int id;  int password;  int balance;  int inuse;} account_t;void init_account_db(int, int, int);int new_account(int *, account_t **);int retrieve_account(int, account_t **);int store_account(account_t *);int return_account(account_t *);int delete_account(account_t *);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?