CVSROOT:        /cvsroot
Module name:    pgsql-server
Changes by:     [EMAIL PROTECTED]       04/04/19 14:42:59

Modified files:
        src/backend/access/transam: xlog.c 
        src/backend/commands: dbcommands.c 
        src/backend/libpq: md5.c 
        src/backend/main: main.c 
        src/backend/port: sysv_shmem.c 
        src/backend/port/win32: shmem.c timer.c 
        src/backend/postmaster: pgstat.c postmaster.c 
        src/backend/storage/smgr: md.c 
        src/backend/tcop: postgres.c 
        src/backend/utils/error: assert.c 
        src/backend/utils/hash: dynahash.c 
        src/backend/utils/init: miscinit.c 
        src/bin/psql   : common.h copy.c startup.c 
        src/bin/scripts: common.c 
        src/include    : port.h 
        src/include/port: win32.h 
        src/include/storage: ipc.h 
        src/interfaces/libpq: Makefile fe-print.c win32.c win32.h 
        src/port       : open.c pipe.c rand.c sprompt.c 

Log message:
        * Most changes are to fix warnings issued when compiling win32
        * removed a few redundant defines
        * get_user_name safe under win32
        * rationalized pipe read EOF for win32 (UPDATED PATCH USED)
        * changed all backend instances of sleep() to pg_usleep
        
        - except for the SLEEP_ON_ASSERT in assert.c, as it would exceed a
        32-bit long [Note to patcher: If a SLEEP_ON_ASSERT of 2000 seconds is
        acceptable, please replace with pg_usleep(2000000000L)]
        
        I added a comment to that part of the code:
        
        /*
        *  It would be nice to use pg_usleep() here, but only does 2000 sec
        *  or 33 minutes, which seems too short.
        */
        sleep(1000000);
        
        Claudio Natoli


---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to [EMAIL PROTECTED] so that your
      message can get through to the mailing list cleanly

Reply via email to