| 1 | module os |
| 2 | |
| 3 | // debugger_present returns a bool indicating if the process is being debugged. |
| 4 | // Note: implementation available only on Darwin, FreeBSD, Linux, OpenBSD and |
| 5 | // Windows. Otherwise, returns false. |
| 6 | @[inline] |
| 7 | pub fn debugger_present() bool { |
| 8 | return false |
| 9 | } |
| 10 | |