# HG changeset patch # User ethanzonca # Date 2009-07-11 00:21:13 # Node ID c22ed9637b222e960c3b8e38de674b2eda70d4fc # Parent b00c1848c39ddaa422f26e55ed0d35a365ed41a8 Comment move diff --git a/src/server/distrend.c b/src/server/distrend.c --- a/src/server/distrend.c +++ b/src/server/distrend.c @@ -54,6 +54,22 @@ struct distrend_config struct distrend_listen **listens; /*< Null terminated array of structs */ }; + + +/* + frame[frame] Status Assignments: + "NULL" - don't render me + "0" - canceled + "1" - unassigned + "2" - assigned to slave + "3" - completed by slave and uploaded + + Have a script crawl through each job in the arrays, priority-biased, and assign a frame to each slave. + Then we will need some sort of watchdog to monitor slaves on the main server to check for stales. Maybe not worry about this for now. +*/ + + + // Stores Blender Job Info struct blendjob { char *name; @@ -275,35 +291,6 @@ int main(int argc, char *argv[]) return 0; } -// End main. Please take this into account when putting in code!!! Use the bracket highlighter!!! - - - - - - - -/* ************************ Newness ************************ */ - - - - -/* - frame[frame] Assignments: - "NULL" - don't render me - "0" - canceled - "1" - unassigned - "2" - assigned to slave - "3" - completed by slave and uploaded - - Have a script crawl through each job in the arrays, priority-biased, and assign a frame to each slave. - Then we will need some sort of watchdog to monitor slaves on the main server to check for stales. Maybe not worry about this for now. -*/ - - - - -