Changeset - 109689bb5e10
[Not reviewed]
default
0 1 0
ethanzonca - 16 years ago 2009-07-02 23:24:26

Quick comment- we need struct rather than array for frameset so we can track who each frame went out to...
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -31,24 +31,25 @@
 
 
// needs to be implemented
 
#include "options.h"
 
 
#include <confuse.h>
 
 
#define max 100
 
// maximum number of stored jobs in memory, per job type (lux/blend). Eventually we can dump this data to disk, or atleast the remainder not in memory...
 
 
int jobnum = 0;
 
 
// Structures for storing job information
 
// OOOOOOkay so we really need a struct for frameset rather than just an array, because we should track who each frame was sent out to. Please do this, someone! :D
 
struct {
 
  char *name;
 
  char *submitter;
 
  char *email;
 
  int priority;
 
  struct frameset **frameset; // What exactly is this now? hehe
 
} blendjob[max];
 
 
struct {
 
  char *name;
 
  char *submitter;
 
  char *email;
0 comments (0 inline, 0 general)