Definition at line 153 of file Server.h. References ILOG_ERROR, and mJobsWaiting. Referenced by AcceptRequestForJob(). 00154 { 00155 Job* job = 0; 00156 if (mJobsWaiting.empty()) 00157 { 00158 ILOG_ERROR("Job queue empty; cannot pop job"); 00159 } 00160 else 00161 { 00162 job = mJobsWaiting[0]; 00163 mJobsWaiting.pop_front(); 00164 } 00165 return job; 00166 }
|