Ignore:
Timestamp:
Dec 29, 1999, 9:36:10 AM (26 years ago)
Author:
phaller
Message:

Fix: memory leak in Dart thread callback functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/winmm/time.cpp

    r1852 r2242  
    1 /* $Id: time.cpp,v 1.7 1999-11-26 21:49:22 phaller Exp $ */
     1/* $Id: time.cpp,v 1.8 1999-12-29 08:33:56 phaller Exp $ */
    22
    33/*
     
    164164// @@@PH 1999/10/26 hack for RA95
    165165  if (wDelay      < OS2TIMER_RESOLUTION_MINIMUM)
     166  {
     167    dprintf(("WINMM:Time:timeSetEvent - Warning: requested delay too low (%08xh)\n",
     168             wDelay));
    166169    wDelay = OS2TIMER_RESOLUTION_MINIMUM;
     170  }
    167171
    168172  if (wResolution < OS2TIMER_RESOLUTION_MINIMUM)
     173  {
     174    dprintf(("WINMM:Time:timeSetEvent - Warning: requested resolution too low (%08xh)\n",
     175             wResolution));
    169176    wResolution = OS2TIMER_RESOLUTION_MINIMUM;
     177  }
    170178
    171179
Note: See TracChangeset for help on using the changeset viewer.