Changeset - 5496c1bd1669
[Not reviewed]
default
0 1 0
LordOfWar - 16 years ago 2010-02-14 20:00:10

updated function prototypes
1 file changed with 7 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/server/mysql.h
Show inline comments
 
@@ -45,9 +45,14 @@ int mysqlConnect(distrend_mysql_conn_t *
 
int mysqlDisconnect(distrend_mysql_conn_t conn);
 

	
 
/**
 
   Mark a frame as finished in the database.
 
   Mark a frame as finished in the database and calculate the seconds spent on that frame.
 
 */
 
void finish_frame(distrend_mysql_conn_t conn, int32_t jobkey, int32_t framenum);
 
void finish_frame(distrend_mysql_conn_t conn, int32_t slavekey, int32_t jobkey, int32_t framenum);
 

	
 
/**
 
   Mark a frame as started in the database and save the time at which it started.
 
 */
 
int start_frame(distrend_mysql_conn_t conn, int32_t slavekey, int32_t jobkey, int32_t framenum);
 

	
 
/**
 
   Changes the priority of an existing (and maybe running) job. @arg head I may end up changing the head if job == head
0 comments (0 inline, 0 general)