mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 23:08:11 +00:00
Shell: Move everything to the Shell namespace
Also provide a basic default-constructor.
This commit is contained in:
parent
34039d6639
commit
f164b808b5
17 changed files with 115 additions and 17 deletions
|
@ -31,6 +31,8 @@
|
|||
#include <stdio.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
namespace Shell {
|
||||
|
||||
bool Job::print_status(PrintStatusMode mode)
|
||||
{
|
||||
int wstatus;
|
||||
|
@ -110,3 +112,5 @@ void Job::unblock() const
|
|||
if (!m_exited && on_exit)
|
||||
on_exit(*this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue