Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
acbf41f6
Commit
acbf41f6
authored
22 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Minor code clean-up
parent
b147ae04
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/squeue/opts.c
+24
-0
24 additions, 0 deletions
src/squeue/opts.c
src/squeue/squeue.c
+1
-1
1 addition, 1 deletion
src/squeue/squeue.c
with
25 additions
and
1 deletion
src/squeue/opts.c
+
24
−
0
View file @
acbf41f6
...
@@ -219,6 +219,8 @@ _parse_state( char* str, enum job_states* states )
...
@@ -219,6 +219,8 @@ _parse_state( char* str, enum job_states* states )
return
SLURM_ERROR
;
return
SLURM_ERROR
;
}
}
/* Take the user's format specification and use it to build build the
* format specifications (internalize it to print.c data structures) */
static
int
static
int
_parse_format
(
char
*
format
)
_parse_format
(
char
*
format
)
{
{
...
@@ -378,6 +380,12 @@ _parse_format( char* format )
...
@@ -378,6 +380,12 @@ _parse_format( char* format )
return
SLURM_SUCCESS
;
return
SLURM_SUCCESS
;
}
}
/* Take a format specification and break it into its components
* IN token - input specification without leading "%", eg. ".5u"
* OUT field - the letter code for the data type
* OUT field_size - byte count
* OUT right_justify - true of field to be right justified
*/
static
void
static
void
_parse_token
(
char
*
token
,
char
*
field
,
int
*
field_size
,
bool
*
right_justify
)
_parse_token
(
char
*
token
,
char
*
field
,
int
*
field_size
,
bool
*
right_justify
)
{
{
...
@@ -404,6 +412,7 @@ _parse_token( char *token, char *field, int *field_size, bool *right_justify)
...
@@ -404,6 +412,7 @@ _parse_token( char *token, char *field, int *field_size, bool *right_justify)
}
}
}
}
/* print the parameters specified */
static
void
static
void
_print_options
()
_print_options
()
{
{
...
@@ -481,6 +490,11 @@ _print_options()
...
@@ -481,6 +490,11 @@ _print_options()
}
;
}
;
/*
* _build_job_list- build a list of job_ids
* IN str - comma separated list of job_ids
* RET List of job_ids (uint32_t)
*/
static
List
static
List
_build_job_list
(
char
*
str
)
_build_job_list
(
char
*
str
)
{
{
...
@@ -596,6 +610,11 @@ _build_all_states_list( void )
...
@@ -596,6 +610,11 @@ _build_all_states_list( void )
}
}
/*
* _build_step_list- build a list of job/step_ids
* IN str - comma separated list of job_id.step_ids
* RET List of job/step_ids (structure of uint32_t's)
*/
static
List
static
List
_build_step_list
(
char
*
str
)
_build_step_list
(
char
*
str
)
{
{
...
@@ -637,6 +656,11 @@ _build_step_list( char* str )
...
@@ -637,6 +656,11 @@ _build_step_list( char* str )
return
my_list
;
return
my_list
;
}
}
/*
* _build_user_list- build a list of UIDs
* IN str - comma separated list of user names
* RET List of UIDs (uint32_t)
*/
static
List
static
List
_build_user_list
(
char
*
str
)
_build_user_list
(
char
*
str
)
{
{
...
...
This diff is collapsed.
Click to expand it.
src/squeue/squeue.c
+
1
−
1
View file @
acbf41f6
...
@@ -151,7 +151,7 @@ _print_job ( void )
...
@@ -151,7 +151,7 @@ _print_job ( void )
if
(
params
.
long_list
)
{
if
(
params
.
long_list
)
{
job_format_add_priority
(
params
.
format_list
,
10
,
true
);
job_format_add_priority
(
params
.
format_list
,
10
,
true
);
out_size
+=
(
10
+
1
);
out_size
+=
(
10
+
1
);
job_format_add_start_time
(
params
.
format_list
,
11
,
false
);
job_format_add_start_time
(
params
.
format_list
,
11
,
false
);
out_size
+=
(
11
+
1
);
out_size
+=
(
11
+
1
);
job_format_add_end_time
(
params
.
format_list
,
11
,
false
);
job_format_add_end_time
(
params
.
format_list
,
11
,
false
);
out_size
+=
(
11
+
1
);
out_size
+=
(
11
+
1
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment