Add arg's to function pointer typedefs and prototypes

This commit is contained in:
Andrew Johnson
2023-12-24 17:58:27 +00:00
parent 1835187a86
commit 2f730b8e9f
4 changed files with 6 additions and 6 deletions

View File

@@ -98,8 +98,8 @@ struct event_user {
unsigned char extra_labor; /* if set call extra labor func */
unsigned char flowCtrlMode; /* replace existing monitor */
unsigned char extraLaborBusy;
void (*init_func)();
epicsThreadId init_func_arg;
void (*init_func)(void *);
void *init_func_arg;
};
typedef struct {