Changeset 39


Ignore:
Timestamp:
Jun 21, 2010, 9:26:31 PM (15 years ago)
Author:
dmik
Message:

jdk/hpi/windows: Compiler warnings.

Location:
trunk/openjdk/jdk/src/windows/hpi
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/openjdk/jdk/src/windows/hpi/include/threads_md.h

    r34 r39  
    7272    struct sys_thread *next;        /* Next thread in active thread queue */
    7373    void *stack_ptr;                /* Pointer into the stack segment */
    74     unsigned int last_sum;
     74    DWORD last_sum;
    7575    PNT_TIB nt_tib;                 /* Pointer to NT thread-local block */
    7676} EMXNOP(sys_thread_t);
  • TabularUnified trunk/openjdk/jdk/src/windows/hpi/src/sys_api_md.c

    r38 r39  
    5050#include "path_md.h"
    5151
    52 static int MAX_INPUT_EVENTS = 2000;
     52#define MAX_INPUT_EVENTS 2000
    5353
    5454int
     
    8080        if (S_ISCHR(mode) || S_ISFIFO(mode)) {
    8181            int ret;
    82             long lpbytes;
     82            long lpbytes = 0;
    8383            if (fd == 0) {
    8484                ret = stdinAvailable(fd, &lpbytes);
  • TabularUnified trunk/openjdk/jdk/src/windows/hpi/src/threads_md.c

    r38 r39  
    830830{
    831831#ifndef _M_AMD64
    832     unsigned int sum = 0;
    833     unsigned int *p;
     832    DWORD sum = 0;
     833    DWORD *p;
    834834    CONTEXT context;
    835835
Note: See TracChangeset for help on using the changeset viewer.