diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/multiprocessing.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/multiprocessing.h b/include/multiprocessing.h index 648bd80..f0e6e5c 100644 --- a/include/multiprocessing.h +++ b/include/multiprocessing.h @@ -24,8 +24,8 @@ struct MultiProcessingPool {      struct MultiProcessingTask *task; ///< Array of tasks to execute      size_t num_used; ///< Number of tasks populated in the task array      size_t num_alloc; ///< Number of tasks allocated by the task array -    const char *ident; ///< Identity of task pool -    const char *log_root; ///< Base directory to store stderr/stdout log files +    char ident[255]; ///< Identity of task pool +    char log_root[PATH_MAX]; ///< Base directory to store stderr/stdout log files  };  ///!< Maximum number of multiprocessing tasks STASIS can execute | 
