Changeset 278 for trunk/openjdk/jdk/src/solaris/demo
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/jdk/src/solaris/demo/jni/Poller/Client.java
r2 r278 1 1 /* 2 * Copyright 1999 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission. -
trunk/openjdk/jdk/src/solaris/demo/jni/Poller/LinkedQueue.java
r2 r278 1 1 /* 2 * Copyright 1999 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission. -
trunk/openjdk/jdk/src/solaris/demo/jni/Poller/Poller.c
r2 r278 1 1 /* 2 * Copyright 1999-2000 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission. … … 162 162 } 163 163 164 #define MEMORY_EXCEPTION(str) throwOutOfMemoryError(env, "Poller:" ##str)165 #define STATE_EXCEPTION(str) throwIllegalStateException(env, "Poller:" ##str)164 #define MEMORY_EXCEPTION(str) throwOutOfMemoryError(env, "Poller:" str) 165 #define STATE_EXCEPTION(str) throwIllegalStateException(env, "Poller:" str) 166 166 #define INTERRUPT_EXCEPTION(str) throwInterruptedIOException(env, \ 167 "Poller:" ##str)167 "Poller:" str) 168 168 jint addfd(JNIEnv *, ioevent_t *, jint, jshort); 169 169 jint removefd(JNIEnv *, ioevent_t *, jint); -
trunk/openjdk/jdk/src/solaris/demo/jni/Poller/Poller.java
r2 r278 1 1 /* 2 * Copyright 1999 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission. -
trunk/openjdk/jdk/src/solaris/demo/jni/Poller/PollingServer.java
r2 r278 1 1 /* 2 * Copyright 1999-2001 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 1999, 2001, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission. -
trunk/openjdk/jdk/src/solaris/demo/jni/Poller/SimpleServer.java
r2 r278 1 1 /* 2 * Copyright 1999 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission. -
trunk/openjdk/jdk/src/solaris/demo/jvmti/hprof/hprof_md.c
r2 r278 1 1 /* 2 * Copyright 2003-2005 Sun Microsystems, Inc. All Rights Reserved.2 * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 13 13 * documentation and/or other materials provided with the distribution. 14 14 * 15 * - Neither the name of Sun Microsystemsnor the names of its15 * - Neither the name of Oracle nor the names of its 16 16 * contributors may be used to endorse or promote products derived 17 17 * from this software without specific prior written permission.
Note:
See TracChangeset
for help on using the changeset viewer.