cs_kill.h 867 B

1234567891011121314151617181920212223242526272829
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. extern kill_call(); /* (proc_p pp)
  7. * Kill all entities that might have an other value
  8. * after execution of the procedure in pp.
  9. */
  10. extern kill_much(); /* ()
  11. * Kill all killable entities except those for which
  12. * a register message was generated.
  13. * Constants, addresses, etc are not killable.
  14. */
  15. extern kill_indir(); /* (entity_p enp)
  16. * Kill all entities that might have an other value
  17. * after indirect assignment to the entity in enp.
  18. */
  19. extern kill_direct(); /* (entity_p enp)
  20. * Kill all entities that might have an other value
  21. * after direct assignment to the entity in enp.
  22. */
  23. extern kill_all(); /* ()
  24. * Kill all entities.
  25. */