mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 04:54:40 +02:00
8145934: Make ttyLocker equivalent for Unified Logging framework
Reviewed-by: rprotacio, stuefe, jrose
This commit is contained in:
parent
c052a98d6f
commit
17dce93f31
21 changed files with 860 additions and 75 deletions
|
@ -327,6 +327,14 @@ FILE* os::open(int fd, const char* mode) {
|
|||
return ::fdopen(fd, mode);
|
||||
}
|
||||
|
||||
void os::flockfile(FILE* fp) {
|
||||
::flockfile(fp);
|
||||
}
|
||||
|
||||
void os::funlockfile(FILE* fp) {
|
||||
::funlockfile(fp);
|
||||
}
|
||||
|
||||
// Builds a platform dependent Agent_OnLoad_<lib_name> function name
|
||||
// which is used to find statically linked in agents.
|
||||
// Parameters:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue