OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [config/] [i386/] [netware-libgcc.c] - Diff between revs 282 and 384

Only display areas with differences | Details | Blame | View Log

Rev 282 Rev 384
/* Startup code for libgcc_s.nlm, necessary because we can't allow
/* Startup code for libgcc_s.nlm, necessary because we can't allow
   libgcc_s to use libc's malloc & Co., which associate allocations
   libgcc_s to use libc's malloc & Co., which associate allocations
   with the NLM owning the current (application) thread.
   with the NLM owning the current (application) thread.
   Contributed by Jan Beulich (jbeulich@novell.com)
   Contributed by Jan Beulich (jbeulich@novell.com)
   Copyright (C) 2004, 2007 Free Software Foundation, Inc.
   Copyright (C) 2004, 2007 Free Software Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
the Free Software Foundation; either version 3, or (at your option)
any later version.
any later version.
 
 
GCC is distributed in the hope that it will be useful,
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#include <netware.h>
#include <netware.h>
#include <stddef.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdlib.h>
#include <windows.h>
#include <windows.h>
 
 
static rtag_t allocRTag;
static rtag_t allocRTag;
 
 
BOOL
BOOL
DllMain (HINSTANCE libraryId __attribute__ ((__unused__)),
DllMain (HINSTANCE libraryId __attribute__ ((__unused__)),
         DWORD reason, void *hModule)
         DWORD reason, void *hModule)
{
{
  switch (reason)
  switch (reason)
    {
    {
    case DLL_NLM_STARTUP:
    case DLL_NLM_STARTUP:
      allocRTag = AllocateResourceTag (hModule,
      allocRTag = AllocateResourceTag (hModule,
                                       "libgcc memory", AllocSignature);
                                       "libgcc memory", AllocSignature);
      return allocRTag != NULL;
      return allocRTag != NULL;
    case DLL_NLM_SHUTDOWN:
    case DLL_NLM_SHUTDOWN:
      /* This does not recover resources associated with the tag...
      /* This does not recover resources associated with the tag...
         ReturnResourceTag (allocRTag, 0); */
         ReturnResourceTag (allocRTag, 0); */
      break;
      break;
    }
    }
  return 1;
  return 1;
}
}
 
 
void *
void *
malloc (size_t size)
malloc (size_t size)
{
{
  return AllocSleepOK (size, allocRTag, NULL);
  return AllocSleepOK (size, allocRTag, NULL);
}
}
 
 
void
void
free (void *ptr)
free (void *ptr)
{
{
  Free (ptr);
  Free (ptr);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.