| Index: base/debug_util_posix.cc
|
| diff --git a/base/debug_util_posix.cc b/base/debug_util_posix.cc
|
| index 20916a0aeb5ed885172417a6896e93db17bbfba5..73b756b7387c03cb0071729aba964961b46506bb 100644
|
| --- a/base/debug_util_posix.cc
|
| +++ b/base/debug_util_posix.cc
|
| @@ -172,7 +172,15 @@ bool DebugUtil::BeingDebugged() {
|
| return pid_index < status.size() && status[pid_index] != '0';
|
| }
|
|
|
| -#endif // OS_LINUX
|
| +#elif defined(OS_FREEBSD)
|
| +
|
| +bool DebugUtil::BeingDebugged() {
|
| + // TODO(benl): can we determine this under FreeBSD?
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| +#endif
|
|
|
| // static
|
| void DebugUtil::BreakDebugger() {
|
|
|