public class org.jruby.api.API
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.api.API
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.api.API this
         0: .line 9
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.jruby.api.API this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/api/API;

  public static org.jruby.runtime.builtin.IRubyObject rb_sys_fail_path(org.jruby.Ruby, java.lang.String);
    descriptor: (Lorg/jruby/Ruby;Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // java.lang.String path
         0: .line 11
            aload 0 /* runtime */
            new java.lang.StringBuilder
            dup
            ldc "bad path for cloexec: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* path */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.jruby.Ruby.newSystemCallError:(Ljava/lang/String;)Lorg/jruby/exceptions/RaiseException;
            athrow
        end local 1 // java.lang.String path
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  runtime  Lorg/jruby/Ruby;
            0    1     1     path  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      runtime  
      path     

  public static int rb_pipe(org.jruby.Ruby, int[]);
    descriptor: (Lorg/jruby/Ruby;[I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // int[] pipes
         0: .line 16
            aload 0 /* runtime */
            aload 1 /* pipes */
            invokestatic org.jruby.api.API.rb_cloexec_pipe:(Lorg/jruby/Ruby;[I)I
            istore 2 /* ret */
        start local 2 // int ret
         1: .line 26
            iload 2 /* ret */
            ireturn
        end local 2 // int ret
        end local 1 // int[] pipes
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  runtime  Lorg/jruby/Ruby;
            0    2     1    pipes  [I
            1    2     2      ret  I
    MethodParameters:
         Name  Flags
      runtime  
      pipes    

  public static int rb_cloexec_pipe(org.jruby.Ruby, int[]);
    descriptor: (Lorg/jruby/Ruby;[I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // int[] pipes
         0: .line 48
            aload 0 /* runtime */
            invokevirtual org.jruby.Ruby.getPosix:()Ljnr/posix/POSIX;
            aload 1 /* pipes */
            invokeinterface jnr.posix.POSIX.pipe:([I)I
            istore 2 /* ret */
        start local 2 // int ret
         1: .line 50
            iload 2 /* ret */
            iconst_m1
            if_icmpne 2
            iconst_m1
            ireturn
         2: .line 59
      StackMap locals: int
      StackMap stack:
            aload 0 /* runtime */
            aload 1 /* pipes */
            iconst_0
            iaload
            invokestatic org.jruby.api.API.rb_maygvl_fd_fix_cloexec:(Lorg/jruby/Ruby;I)V
         3: .line 60
            aload 0 /* runtime */
            aload 1 /* pipes */
            iconst_1
            iaload
            invokestatic org.jruby.api.API.rb_maygvl_fd_fix_cloexec:(Lorg/jruby/Ruby;I)V
         4: .line 61
            iload 2 /* ret */
            ireturn
        end local 2 // int ret
        end local 1 // int[] pipes
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  runtime  Lorg/jruby/Ruby;
            0    5     1    pipes  [I
            1    5     2      ret  I
    MethodParameters:
         Name  Flags
      runtime  
      pipes    

  public static void rb_maygvl_fd_fix_cloexec(org.jruby.Ruby, int);
    descriptor: (Lorg/jruby/Ruby;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.jruby.Ruby runtime
        start local 1 // int fd
         0: .line 65
            new org.jruby.util.io.PosixShim
            dup
            aload 0 /* runtime */
            invokespecial org.jruby.util.io.PosixShim.<init>:(Lorg/jruby/Ruby;)V
            astore 2 /* shim */
        start local 2 // org.jruby.util.io.PosixShim shim
         1: .line 66
            aload 2 /* shim */
            iload 1 /* fd */
            invokestatic org.jruby.util.io.OpenFile.fdFixCloexec:(Lorg/jruby/util/io/PosixShim;I)V
         2: .line 67
            return
        end local 2 // org.jruby.util.io.PosixShim shim
        end local 1 // int fd
        end local 0 // org.jruby.Ruby runtime
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  runtime  Lorg/jruby/Ruby;
            0    3     1       fd  I
            1    3     2     shim  Lorg/jruby/util/io/PosixShim;
    MethodParameters:
         Name  Flags
      runtime  
      fd       
}
SourceFile: "API.java"