예제 #1
0
job_t::~job_t()
{
    if (first_process != NULL)
        delete first_process;
    io_chain_destroy(this->io);
    release_job_id(job_id);
}
예제 #2
0
job_t::~job_t()
{
    if (first_process != NULL)
        delete first_process;
    release_job_id(job_id);
}
예제 #3
0
파일: proc.cpp 프로젝트: Sam0523/fish-shell
job_t::~job_t() { release_job_id(job_id); }
예제 #4
0
파일: proc.cpp 프로젝트: msteed/fish-shell
job_t::~job_t() {
    delete first_process;
    release_job_id(job_id);
}