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 / SocketOutputStream.c < prev   
C/C++ Source or Header  |  1996-09-28  |  925b  |  32 lines

  1. /*
  2.  * java.net.SocketOutputStream.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/FileOutputStream.h"
  17. #include "java.net.stubs/SocketImpl.h"
  18. #include "java.net.stubs/SocketOutputStream.h"
  19. #include "nets.h"
  20. #include "kthread.h"
  21.  
  22. void
  23. java_net_SocketOutputStream_socketWrite(struct Hjava_net_SocketOutputStream* this, HArrayOfByte* buf, jint offset, jint len)
  24. {
  25.     int r;
  26.  
  27.     r = threadedWrite(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.