WELCOME TO THE INTERNET
Developped by sulfasTor

My shell

sulfasTor@pc:~$ mind | grep "who am I?" > about.html
mind: information not found. Still thinking...
sulfasTor@pc:~$ ls -a
.      .genius  .intelligence
..     .linux   .proficiency
.gnu   Public   .innovation
.fsf   .games   README.md

Random code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#include "portability.h"

#if HAVE_LINUX_PRCTL_H
#include <signal.h>

#include <linux/prctl.h>
#include <sys/prctl.h>
#endif

/*
 * When called in the engine process before exec, this ensures
 * the engine is terminated in the event that we crash.
 */
void maybe_kill_orphan_engine ()
{
#if HAVE_LINUX_PRCTL_H
    prctl (PR_SET_PDEATHSIG, SIGTERM);
#endif
}