diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-30 23:32:39 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-07-30 23:32:39 +0000 |
commit | 381d7232a0d63c0a145fae5e2c40e577ff2f44f1 (patch) | |
tree | 6a9191774f3c797a77ef7d85dbe71564ff252ada /src/log.h | |
parent | 71fe871908db4317e5afd4308a044909a1799c9e (diff) | |
download | mpd-381d7232a0d63c0a145fae5e2c40e577ff2f44f1.tar.gz mpd-381d7232a0d63c0a145fae5e2c40e577ff2f44f1.tar.xz mpd-381d7232a0d63c0a145fae5e2c40e577ff2f44f1.zip |
remove deprecated myfprintf wrapper
This shaves another 5-6k because we've removed the paranoid
fflush() calls after every fprintf. Now we only fflush()
when we need to
git-svn-id: https://svn.musicpd.org/mpd/trunk@4493 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -23,6 +23,8 @@ #include "myfprintf.h" +#include <unistd.h> + #define LOG_LEVEL_LOW 0 #define LOG_LEVEL_SECURE 1 #define LOG_LEVEL_DEBUG 2 @@ -30,18 +32,18 @@ extern int logLevel; extern short warningFlushed; -#define ERROR(...) myfprintf(stderr, __VA_ARGS__) +#define ERROR(...) fdprintf(STDERR_FILENO, __VA_ARGS__) -#define LOG(...) myfprintf(stdout, __VA_ARGS__) +#define LOG(...) fdprintf(STDOUT_FILENO, __VA_ARGS__) #define SECURE(...) if(logLevel>=LOG_LEVEL_SECURE) \ - myfprintf(stdout, __VA_ARGS__) + fdprintf(STDOUT_FILENO, __VA_ARGS__) #define DEBUG(...) if(logLevel>=LOG_LEVEL_DEBUG) \ - myfprintf(stdout, __VA_ARGS__) + fdprintf(STDOUT_FILENO, __VA_ARGS__) #define WARNING(...) { \ - if(warningFlushed) myfprintf(stderr, __VA_ARGS__); \ + if(warningFlushed) fdprintf(STDERR_FILENO, __VA_ARGS__); \ else bufferWarning(__VA_ARGS__); \ } |