#include "shell.hpp" void shell::c_resume (std::string args) { // sanity checks if ( args == "" ) { carp ("format: status "); return; } int pid = atoi (args.c_str ()); // get job saga::job::job job = jobs_.get_job(pid); // resume it // FIXME return; }