Skip to content
Snippets Groups Projects
Commit a5d8c390 authored by Mark Grondona's avatar Mark Grondona
Browse files

o change prototypes and remove code to suppress warnings

parent be5880e4
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
#include "src/srun/allocate.h" #include "src/srun/allocate.h"
#include "src/srun/msg.h" #include "src/srun/msg.h"
#include "src/srun/opt.h" #include "src/srun/opt.h"
#include "src/srun/env.h"
#include "src/srun/attach.h" #include "src/srun/attach.h"
#define MAX_ALLOC_WAIT 60 /* seconds */ #define MAX_ALLOC_WAIT 60 /* seconds */
...@@ -214,7 +215,7 @@ _intr_handler(int signo) ...@@ -214,7 +215,7 @@ _intr_handler(int signo)
* (see opt.h) * (see opt.h)
*/ */
job_desc_msg_t * job_desc_msg_t *
job_desc_msg_create_from_opts (const char *script) job_desc_msg_create_from_opts (char *script)
{ {
extern char **environ; extern char **environ;
job_desc_msg_t *j = xmalloc(sizeof(*j)); job_desc_msg_t *j = xmalloc(sizeof(*j));
......
...@@ -47,7 +47,7 @@ resource_allocation_response_msg_t * allocate_nodes(void); ...@@ -47,7 +47,7 @@ resource_allocation_response_msg_t * allocate_nodes(void);
* (see opt.h), if script != NULL then this is a batch job. * (see opt.h), if script != NULL then this is a batch job.
* The resulting memory must be freed with job_desc_msg_destroy() * The resulting memory must be freed with job_desc_msg_destroy()
*/ */
job_desc_msg_t * job_desc_msg_create_from_opts (const char *script); job_desc_msg_t * job_desc_msg_create_from_opts (char *script);
/* /*
* Destroy (free memory from) a job_desc_msg_t object allocated with * Destroy (free memory from) a job_desc_msg_t object allocated with
......
...@@ -37,7 +37,7 @@ setenvf(const char *fmt, ...) ...@@ -37,7 +37,7 @@ setenvf(const char *fmt, ...)
* Return the number of elements in the environment `env' * Return the number of elements in the environment `env'
*/ */
int int
envcount (const char **env) envcount (char **env)
{ {
int envc = 0; int envc = 0;
while (env[envc] != NULL) while (env[envc] != NULL)
......
...@@ -254,11 +254,6 @@ static int _wait_on_active(thd_t *thd, job_t *job) ...@@ -254,11 +254,6 @@ static int _wait_on_active(thd_t *thd, job_t *job)
return rc; return rc;
} }
static void _alrm_handler(int signo)
{
return;
}
/* _p_launch - parallel (multi-threaded) task launcher */ /* _p_launch - parallel (multi-threaded) task launcher */
static void _p_launch(slurm_msg_t *req, job_t *job) static void _p_launch(slurm_msg_t *req, job_t *job)
{ {
......
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