Skip to content
Snippets Groups Projects
Commit 0707553b authored by Danny Auble's avatar Danny Auble
Browse files

unabstracted * from jobacctinfo_t

parent 091ef3f0
No related branches found
No related tags found
No related merge requests found
...@@ -151,7 +151,7 @@ BEGIN_C_DECLS ...@@ -151,7 +151,7 @@ BEGIN_C_DECLS
/* Define jobacctinfo_t below to avoid including extraneous slurm headers */ /* Define jobacctinfo_t below to avoid including extraneous slurm headers */
#ifndef __jobacctinfo_t_defined #ifndef __jobacctinfo_t_defined
# define __jobacctinfo_t_defined # define __jobacctinfo_t_defined
typedef struct jobacctinfo *jobacctinfo_t; /* opaque data type */ typedef struct jobacctinfo jobacctinfo_t; /* opaque data type */
#endif #endif
/* Define allocation_msg_thread_t below to avoid including extraneous /* Define allocation_msg_thread_t below to avoid including extraneous
...@@ -343,7 +343,7 @@ enum select_node_cnt { ...@@ -343,7 +343,7 @@ enum select_node_cnt {
/* jobacct data types */ /* jobacct data types */
enum jobacct_data_type { enum jobacct_data_type {
JOBACCT_DATA_TOTAL, /* data-> jobacctinfo_t */ JOBACCT_DATA_TOTAL, /* data-> jobacctinfo_t * */
JOBACCT_DATA_PIPE, /* data-> file descriptor */ JOBACCT_DATA_PIPE, /* data-> file descriptor */
JOBACCT_DATA_RUSAGE, /* data-> rusage set user_cpu_sec, JOBACCT_DATA_RUSAGE, /* data-> rusage set user_cpu_sec,
* user_cpu_usec, sys_cpu_sec, sys_cpu_usec */ * user_cpu_usec, sys_cpu_sec, sys_cpu_usec */
......
...@@ -193,7 +193,7 @@ struct jobacctinfo { ...@@ -193,7 +193,7 @@ struct jobacctinfo {
/* Define jobacctinfo_t below to avoid including extraneous slurm headers */ /* Define jobacctinfo_t below to avoid including extraneous slurm headers */
#ifndef __jobacctinfo_t_defined #ifndef __jobacctinfo_t_defined
# define __jobacctinfo_t_defined # define __jobacctinfo_t_defined
typedef struct jobacctinfo *jobacctinfo_t; /* opaque data type */ typedef struct jobacctinfo jobacctinfo_t; /* opaque data type */
#endif #endif
extern jobacct_step_rec_t *create_jobacct_step_rec(); extern jobacct_step_rec_t *create_jobacct_step_rec();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment