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 / net / java.net / SocketInputStream.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  938b  |  34 lines

  1. /*
  2.  * java.net.SocketInputStream.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 <stdio.h>
  14. #include <native.h>
  15. #include "../../native/java.io.stubs/FileDescriptor.h"
  16. #include "../../native/java.io.stubs/FileInputStream.h"
  17. #include "java.net.stubs/SocketImpl.h"
  18. #include "java.net.stubs/SocketInputStream.h"
  19. #include "nets.h"
  20. #include "kthread.h"
  21.  
  22. jint
  23. java_net_SocketInputStream_socketRead(struct Hjava_net_SocketInputStream* this, HArrayOfByte* buf, jint offset, jint len)
  24. {
  25.     int r;
  26.  
  27.     r = threadedRead(unhand(unhand(unhand(this)->impl)->fd)->fd, &unhand(buf)->body[offset], len);
  28.     if (r < 0) {
  29.         SignalError(0, "java.io.IOException", SYS_ERROR);
  30.     }
  31.  
  32.     return (r);
  33. }
  34.