comparison src/os/bsd/vm/os_bsd.hpp @ 14475:6c9332549827

6546236: Thread interrupt() of Thread.sleep() can be lost on Solaris due to race with signal handler Reviewed-by: dholmes, dcubed
author fparain
date Wed, 19 Feb 2014 16:22:15 +0000
parents faff125a1ead
children bb9356ec5967
comparison
equal deleted inserted replaced
14474:de7f1b016d55 14475:6c9332549827
1 /* 1 /*
2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2014, 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. 7 * published by the Free Software Foundation.
128 static size_t default_stack_size(os::ThreadType thr_type); 128 static size_t default_stack_size(os::ThreadType thr_type);
129 static size_t default_guard_size(os::ThreadType thr_type); 129 static size_t default_guard_size(os::ThreadType thr_type);
130 130
131 // Real-time clock functions 131 // Real-time clock functions
132 static void clock_init(void); 132 static void clock_init(void);
133
134 static inline bool supports_monotonic_clock() {
135 return _clock_gettime != NULL;
136 }
137 133
138 static int clock_gettime(clockid_t clock_id, struct timespec *tp) { 134 static int clock_gettime(clockid_t clock_id, struct timespec *tp) {
139 return _clock_gettime ? _clock_gettime(clock_id, tp) : -1; 135 return _clock_gettime ? _clock_gettime(clock_id, tp) : -1;
140 } 136 }
141 137