src/jdk.security.auth/share/classes/com/sun/security/auth/module/UnixSystem.java
changeset 58331 e4ce29f6094e
parent 49245 6c3054543ede
equal deleted inserted replaced
58330:de8e08015d51 58331:e4ce29f6094e
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    31  */
    31  */
    32 public class UnixSystem {
    32 public class UnixSystem {
    33 
    33 
    34     private native void getUnixInfo();
    34     private native void getUnixInfo();
    35 
    35 
       
    36     // Warning: the following 4 fields are used by Unix.c
    36     protected String username;
    37     protected String username;
    37     protected long uid;
    38     protected long uid;
    38     protected long gid;
    39     protected long gid;
    39     protected long[] groups;
    40     protected long[] groups;
    40 
    41