v2 / vlib / os / debugger_default.c.v
9 lines · 8 sloc · 266 bytes · 80fed7add5ff95e46a4f020b8bade3b1b51f9eab
Raw
1module 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]
7pub fn debugger_present() bool {
8 return false
9}
10