home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / sys / gc_lib / freebsd.c < prev    next >
Text File  |  1999-06-05  |  1KB  |  35 lines

  1. /*
  2. -- This file is  free  software, which  comes  along  with  SmallEiffel. This
  3. -- software  is  distributed  in the hope that it will be useful, but WITHOUT 
  4. -- ANY  WARRANTY;  without  even  the  implied warranty of MERCHANTABILITY or
  5. -- FITNESS  FOR A PARTICULAR PURPOSE. You can modify it as you want, provided
  6. -- this header is kept unaltered, and a notification of the changes is added.
  7. -- You  are  allowed  to  redistribute  it and sell it, alone or as a part of 
  8. -- another product.
  9. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  10. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  11. --                       http://www.loria.fr/SmallEiffel
  12. --
  13. */
  14. /* 
  15.    Stack and Registers traversal for Free BSD.
  16.    Addresses decrease as the stack grows.
  17.    Registers are saved using SETJMP().
  18.  
  19.    NOT YET TESTED, BUT I AM QUITE SURE THAT IT IS OK.
  20.    PLEASE LET ME KNOW.
  21.    IN FACT, THIS FILE IS A COPY OF linux.c
  22. */
  23.  
  24. void mark_stack_and_registers(void) {
  25.   void** max = stack_bottom;
  26.   void** stack_pointer;
  27.   JMP_BUF registers;
  28.  
  29.   (void)SETJMP(registers);
  30.   stack_pointer=((void**)(®isters));
  31.   while(stack_pointer < max) {
  32.     gc_mark(*(stack_pointer++));
  33.   }
  34. }
  35.