From 574f2f43948bb21d6e4187936ba5a5afccba25f6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 27 Feb 2008 18:41:59 +0000 Subject: *: add optimization barrier to all "G trick" locations --- procps/nmeter.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'procps') diff --git a/procps/nmeter.c b/procps/nmeter.c index b8ba3facb..573052921 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c @@ -75,11 +75,11 @@ struct globals { #define proc_diskstats (G.proc_diskstats ) #define proc_sys_fs_filenr (G.proc_sys_fs_filenr) #define INIT_G() do { \ - PTR_TO_GLOBALS = xzalloc(sizeof(G)); \ - cur_outbuf = outbuf; \ - final_str = "\n"; \ - deltanz = delta = 1000000; \ - } while (0) + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ + cur_outbuf = outbuf; \ + final_str = "\n"; \ + deltanz = delta = 1000000; \ +} while (0) // We depend on this being a char[], not char* - we take sizeof() of it #define outbuf bb_common_bufsiz1 -- cgit v1.2.3