stream.c

Tue, 02 Oct 2012 10:49:25 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 02 Oct 2012 10:49:25 +0200
changeset 33
1a2d7298bc82
parent 20
43725438ac50
permissions
-rw-r--r--

added multi-directory support

fixed parser bug in directory parser locking argument number 1024

fixed freed memory access on settings structure

/*
 * stream.c
 *
 *  Created on: 20.09.2011
 *      Author: Mike
 */

#include "stream.h"

void close_stdout() {
#ifdef _WIN32
  _STREAM_STDOUT = dup(STDOUT_FILENO);
#endif
  freopen("/dev/null", "w", stdout);
}

void reopen_stdout() {
#ifdef _WIN32
  close(STDOUT_FILENO);
  fdopen(dup(_STREAM_STDOUT), "wa");
  close(_STREAM_STDOUT);
#else
  freopen("/dev/stdout", "w", stdout);
#endif
}

mercurial