close pipes on RETAIL

main
Dominik Madarász 2023-10-13 20:26:42 +02:00
parent 9a7e727cfc
commit 733f1b1eb1
4 changed files with 30 additions and 9 deletions

View File

@ -201,9 +201,9 @@ if "%1"=="push" (
call make.bat tidy
git status
rem if not "%2"=="dp" (
rem call MAKE.bat dpush auto
rem )
if "%2"=="dp" (
call MAKE.bat dpush auto
)
git add .
git commit
if not "%2"=="local" (

View File

@ -357036,7 +357036,14 @@ const struct in6_addr in6addr_any; // = IN6ADDR_ANY_INIT;
//static const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
#endif
// @fixme crashes right now
// ifdef(retail, AUTORUN { fclose(stderr); fclose(stdout); } )
ifdef(retail, AUTORUN {
fclose(stderr);
fclose(stdout);
const char* null_stream = ifdef(win32, "nul:", "/dev/null");
if (!freopen(null_stream, "a", stdout)) PANIC("cannot recreate standard streams");
if (!freopen(null_stream, "a", stderr)) PANIC("cannot recreate standard streams");
} )
#line 0
#endif // V4K_IMPLEMENTATION

View File

@ -126,5 +126,12 @@ const struct in6_addr in6addr_any; // = IN6ADDR_ANY_INIT;
//static const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
#endif
// @fixme crashes right now
// ifdef(retail, AUTORUN { fclose(stderr); fclose(stdout); } )
ifdef(retail, AUTORUN {
fclose(stderr);
fclose(stdout);
const char* null_stream = ifdef(win32, "nul:", "/dev/null");
if (!freopen(null_stream, "a", stdout)) PANIC("cannot recreate standard streams");
if (!freopen(null_stream, "a", stderr)) PANIC("cannot recreate standard streams");
} )

View File

@ -26051,6 +26051,13 @@ const struct in6_addr in6addr_any; // = IN6ADDR_ANY_INIT;
//static const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
#endif
// @fixme crashes right now
// ifdef(retail, AUTORUN { fclose(stderr); fclose(stdout); } )
ifdef(retail, AUTORUN {
fclose(stderr);
fclose(stdout);
const char* null_stream = ifdef(win32, "nul:", "/dev/null");
if (!freopen(null_stream, "a", stdout)) PANIC("cannot recreate standard streams");
if (!freopen(null_stream, "a", stderr)) PANIC("cannot recreate standard streams");
} )
#line 0