forked from AbleOS/ableos
21 lines
240 B
Plaintext
21 lines
240 B
Plaintext
|
stn := @use("stn");
|
||
|
.{log} := stn;
|
||
|
.{ProcessID} := stn.acs
|
||
|
|
||
|
Strategy := enum {
|
||
|
None,
|
||
|
Restart,
|
||
|
}
|
||
|
|
||
|
MonitoredProcess := struct {
|
||
|
pid: ProcessID,
|
||
|
}
|
||
|
|
||
|
main := fn(): int {
|
||
|
log.info("Angels Halo reincarnation server started.\0")
|
||
|
|
||
|
|
||
|
|
||
|
return 0
|
||
|
}
|