Changeset: f3509d8d04d3 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f3509d8d04d3
Modified Files:
        gdk/gdk_posix.c
Branch: configurable_working_set
Log Message:

Remove redundant preprocessor branch.


diffs (15 lines):

diff --git a/gdk/gdk_posix.c b/gdk/gdk_posix.c
--- a/gdk/gdk_posix.c
+++ b/gdk/gdk_posix.c
@@ -744,11 +744,9 @@ MT_init_posix(void)
 size_t
 MT_getrss(void)
 {
-#ifdef WIN32
        PROCESS_MEMORY_COUNTERS ctr;
        if (GetProcessMemoryInfo(GetCurrentProcess(), &ctr, sizeof(ctr)))
                return ctr.WorkingSetSize;
-#endif
        return 0;
 }
 
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to