375f7fe977
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@556 ed5b42cb-e716-0410-a449-f6a68f950b19
31 lines
682 B
Java
31 lines
682 B
Java
//
|
|
// $Id$
|
|
|
|
package com.threerings.util;
|
|
|
|
import com.threerings.util.unsafe.Unsafe;
|
|
|
|
/**
|
|
* Does something extraordinary.
|
|
*/
|
|
public class UIDTestApp
|
|
{
|
|
public static void main (String[] args)
|
|
{
|
|
if (Unsafe.setuid(1000)) {
|
|
System.err.println("Yay! My uid is changed.");
|
|
} else {
|
|
System.err.println("Boo hoo! I couldn't change my uid.");
|
|
}
|
|
if (Unsafe.setgid(60)) {
|
|
System.err.println("Yay! My gid is changed.");
|
|
} else {
|
|
System.err.println("Boo hoo! I couldn't change my gid.");
|
|
}
|
|
try {
|
|
Thread.sleep(60*1000L);
|
|
} catch (Exception e) {
|
|
}
|
|
}
|
|
}
|