home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / lib / native / java.lang / SecurityManager.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  979b  |  44 lines

  1. /*
  2.  * java.lang.SecurityManager.c
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #include <stdlib.h>
  14. #include <native.h>
  15. #include "java.lang.stubs/SecurityManager.h"
  16.  
  17. HArrayOfObject* /* HArrayOfClass */
  18. java_lang_SecurityManager_getClassContext(struct Hjava_lang_SecurityManager* this)
  19. {
  20.     abort();
  21.     return (0);
  22. }
  23.  
  24. struct Hjava_lang_ClassLoader*
  25. java_lang_SecurityManager_currentClassLoader(struct Hjava_lang_SecurityManager* this)
  26. {
  27.     abort();
  28.     return (0);
  29. }
  30.  
  31. jint
  32. java_lang_SecurityManager_classDepth(struct Hjava_lang_SecurityManager* this, struct Hjava_lang_String* str)
  33. {
  34.     abort();
  35.     return (0);
  36. }
  37.  
  38. jint
  39. java_lang_SecurityManager_classLoaderDepth(struct Hjava_lang_SecurityManager* this)
  40. {
  41.     abort();
  42.     return (0);
  43. }
  44.