Changeset - 977179850e7e
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 16 years ago 2009-07-15 13:29:26
ohnobinki@ohnopublishing.net
moved global vars after declarations, where they should be
1 file changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -38,10 +38,6 @@
 

	
 

	
 

	
 
// Global Vars, try to cut down on these
 
jobnum_t jobnum = 0; // The next job number to create in the queue
 
int hcfjob; // Highest consecutively finished job
 
int highest_jobnum; // The job number of the most recently created job, this is used when creating new jobs
 

	
 
typedef unsigned int jobnum_t;
 

	
 
@@ -115,6 +111,12 @@ void blendjob_remove(struct blendjob **h
 

	
 
struct blendjob *blendjob_get(struct blendjob *head, jobnum_t jobnum);
 

	
 
/* Global Vars, try to cut down on these */
 
jobnum_t jobnum = 0; // The next job number to create in the queue
 
int hcfjob; // Highest consecutively finished job
 
int highest_jobnum; // The job number of the most recently created job, this is used when creating new jobs
 

	
 

	
 
/* ********************** Functions ************************* */
 

	
 
void start_data(){
0 comments (0 inline, 0 general)