src/hotspot/os/bsd/semaphore_bsd.hpp
changeset 48635 612dfa1d8aad
parent 47216 71c04702a3d5
child 53244 9807daeb47c4
equal deleted inserted replaced
48633:2569f227ae8e 48635:612dfa1d8aad
     1 /*
     1 /*
     2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2015, 2018, 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.
    51 
    51 
    52   bool trywait();
    52   bool trywait();
    53   bool timedwait(unsigned int sec, int nsec);
    53   bool timedwait(unsigned int sec, int nsec);
    54 
    54 
    55  private:
    55  private:
    56   static jlong currenttime();
    56   static int64_t currenttime();
    57 };
    57 };
    58 
    58 
    59 typedef OSXSemaphore SemaphoreImpl;
    59 typedef OSXSemaphore SemaphoreImpl;
    60 
    60 
    61 #endif // __APPLE__
    61 #endif // __APPLE__