Ignore:
Timestamp:
Jun 19, 1999, 7:58:50 PM (26 years ago)
Author:
sandervl
Message:

More TIB changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/os2util.cpp

    r123 r125  
    1 /* $Id: os2util.cpp,v 1.4 1999-06-19 13:57:51 sandervl Exp $ */
     1/* $Id: os2util.cpp,v 1.5 1999-06-19 17:58:32 sandervl Exp $ */
    22
    33/*
     
    284284}
    285285//******************************************************************************
    286 //******************************************************************************
     286//Allocate local thread memory
     287//******************************************************************************
     288ULONG OS2AllocThreadLocalMemory(int nrdwords)
     289{
     290 APIRET rc;
     291 PULONG thrdaddr;
     292
     293   rc = DosAllocThreadLocalMemory(nrdwords, &thrdaddr);
     294   if(rc) {
     295        dprintf(("DosAllocThreadLocalMemory failed %d", rc));
     296        return 0;
     297   }
     298   return (ULONG)thrdaddr;
     299}
     300//******************************************************************************
     301//******************************************************************************
     302
Note: See TracChangeset for help on using the changeset viewer.