]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/profiling/profile-mk.h
xnu-1504.9.17.tar.gz
[apple/xnu.git] / osfmk / profiling / profile-mk.h
index 700e030e54d41626f02cca3cd98c2f25ee3f0f86..f2da965f8c7f2ea87f78d514a7b0d70c24e32a22 100644 (file)
@@ -55,12 +55,6 @@ extern int gprofwrite(dev_t, io_req_t);
  * Macros to access the nth cpu's profile variable structures.
  */
 
-#if NCPUS <= 1
 #define PROFILE_VARS(cpu) (&_profile_vars)
 
-#else
-extern struct profile_vars *_profile_vars_cpus[NCPUS];
-#define PROFILE_VARS(cpu) (_profile_vars_cpus[(cpu)])
-#endif
-