home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / s-tasmem.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  103 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --                    S Y S T E M . T A S K _ M E M O R Y                   --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.10 $                             --
  10. --                                                                          --
  11. --     Copyright (c) 1991,1992,1993,1994,1995 FSU, All Rights Reserved      --
  12. --                                                                          --
  13. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License  as published by the --
  15. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  16. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  18. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License  for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  21. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  22. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with System.Task_Primitives;
  27. --  Used for, Lock
  28. --            Unlock
  29. --            Initialize_Lock
  30. --            Write_Lock
  31.  
  32. pragma Elaborate (System.Task_Primitives);
  33. package body System.Task_Memory is
  34.  
  35.    --  malloc() and free() are not currently thread-safe, though they should
  36.    --  be. In the meantime, these protected versions are provided.
  37.  
  38.    Memory_Mutex : Task_Primitives.Lock;
  39.  
  40.    --------------------
  41.    -- Low_Level_Free --
  42.    --------------------
  43.  
  44.    procedure Low_Level_Free (A : System.Address) is
  45.  
  46.       Error : Boolean;
  47.  
  48.       procedure free (Addr : System.Address);
  49.       pragma Import (C, free, "free");
  50.  
  51.    begin
  52.       Task_Primitives.Write_Lock (Memory_Mutex, Error);
  53.       free (A);
  54.       Task_Primitives.Unlock (Memory_Mutex);
  55.    end Low_Level_Free;
  56.  
  57.    -------------------
  58.    -- Low_Level_New --
  59.    -------------------
  60.  
  61.    function Low_Level_New
  62.      (Size : Storage_Elements.Storage_Count)
  63.       return System.Address
  64.    is
  65.       Temp : System.Address;
  66.       Error : Boolean;
  67.  
  68.       function malloc
  69.         (Size : in Storage_Elements.Storage_Count)
  70.          return System.Address;
  71.       pragma Import (C, malloc, "malloc");
  72.  
  73.    begin
  74.       Task_Primitives.Write_Lock (Memory_Mutex, Error);
  75.       Temp := malloc (Size);
  76.       Task_Primitives.Unlock (Memory_Mutex);
  77.       return Temp;
  78.    end Low_Level_New;
  79.  
  80.    --------------------------
  81.    -- Unsafe_Low_Level_New --
  82.    --------------------------
  83.  
  84.    function Unsafe_Low_Level_New
  85.      (Size : Storage_Elements.Storage_Count)
  86.       return System.Address
  87.    is
  88.       function malloc
  89.         (Size : in Storage_Elements.Storage_Count)
  90.          return System.Address;
  91.       pragma Import (C, malloc, "malloc");
  92.  
  93.    begin
  94.       return malloc (Size);
  95.    end Unsafe_Low_Level_New;
  96.  
  97. begin
  98.  
  99.    Task_Primitives.Initialize_Lock (Priority'Last, Memory_Mutex);
  100.    --  Initialize the lock used to synchronize low-level memory allocation.
  101.  
  102. end System.Task_Memory;
  103.