X-Git-Url: https://git.saurik.com/apple/system_cmds.git/blobdiff_plain/1a7e3f61d38d679bba59130891c2031b5a0092b6..bd6521f0fc816ab056bc71376f9706a69b3b52c1:/kdprof/EnableAction.cpp diff --git a/kdprof/EnableAction.cpp b/kdprof/EnableAction.cpp new file mode 100644 index 0000000..9a9b169 --- /dev/null +++ b/kdprof/EnableAction.cpp @@ -0,0 +1,15 @@ +// +// EnableAction.cpp +// kdprof +// +// Created by James McIlree on 4/17/13. +// Copyright (c) 2013 Apple. All rights reserved. +// + +#include "global.h" + +void EnableAction::execute(Globals& globals) { + if (!KDBG::set_enabled(true)) { + usage("Unable to enable tracing"); + } +}