cs_kill.h 827 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. void 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. void 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. void 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. void 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. void kill_all();
  24. /* Kill all entities.
  25. */