/[classpath]/classpath/java/io/FileDescriptor.java
ViewVC logotype

Diff of /classpath/java/io/FileDescriptor.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.15 by tromey, Mon Apr 21 19:44:09 2003 UTC revision 1.16 by cbj, Fri Apr 25 22:44:43 2003 UTC
# Line 49  import gnu.classpath.Configuration; Line 49  import gnu.classpath.Configuration;
49   */   */
50  public final class FileDescriptor  public final class FileDescriptor
51  {  {
52      /**
53       * A <code>FileDescriptor</code> representing the system standard input
54       * stream.  This will usually be accessed through the
55       * <code>System.in</code>variable.
56       */
57      public static final FileDescriptor in = null;
58    
59      /**
60       * A <code>FileDescriptor</code> representing the system standard output
61       * stream.  This will usually be accessed through the
62       * <code>System.out</code>variable.
63       */
64      public static final FileDescriptor out = null;
65    
66      /**
67       * A <code>FileDescriptor</code> representing the system standard error
68       * stream.  This will usually be accessed through the
69       * <code>System.err</code>variable.
70       */
71      public static final FileDescriptor err = null;
72    
73    static    static
74      {      {
75        if (Configuration.INIT_LOAD_LIBRARY)        if (Configuration.INIT_LOAD_LIBRARY)
# Line 73  public final class FileDescriptor Line 94  public final class FileDescriptor
94    static final int SYNC   = 16;    static final int SYNC   = 16;
95    
96    /**    /**
    * A <code>FileDescriptor</code> representing the system standard input  
    * stream.  This will usually be accessed through the  
    * <code>System.in</code>variable.  
    */  
   public static final FileDescriptor in = null;  
   
   /**  
    * A <code>FileDescriptor</code> representing the system standard output  
    * stream.  This will usually be accessed through the  
    * <code>System.out</code>variable.  
    */  
   public static final FileDescriptor out = null;  
   
   /**  
    * A <code>FileDescriptor</code> representing the system standard error  
    * stream.  This will usually be accessed through the  
    * <code>System.err</code>variable.  
    */  
   public static final FileDescriptor err = null;  
   
   /**  
97     * This is the actual native file descriptor value     * This is the actual native file descriptor value
98     */     */
99    private long nativeFd = -1L;    private long nativeFd = -1L;

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26