mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 11:45:32 +00:00
my_file_opened to my_atomic
This commit is contained in:
@ -222,7 +222,8 @@ FILE *my_fdopen(File Filedes, const char *name, int Flags, myf MyFlags)
|
||||
{
|
||||
if (my_file_info[Filedes].type != UNOPEN)
|
||||
{
|
||||
thread_safe_decrement32(&my_file_opened); /* File is opened with my_open ! */
|
||||
/* File is opened with my_open ! */
|
||||
my_atomic_add32_explicit(&my_file_opened, -1, MY_MEMORY_ORDER_RELAXED);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -105,7 +105,7 @@ int my_close(File fd, myf MyFlags)
|
||||
{
|
||||
my_free(name);
|
||||
}
|
||||
thread_safe_decrement32(&my_file_opened);
|
||||
my_atomic_add32_explicit(&my_file_opened, -1, MY_MEMORY_ORDER_RELAXED);
|
||||
DBUG_RETURN(err);
|
||||
} /* my_close */
|
||||
|
||||
@ -133,7 +133,7 @@ File my_register_filename(File fd, const char *FileName, enum file_type
|
||||
DBUG_ENTER("my_register_filename");
|
||||
if ((int) fd >= MY_FILE_MIN)
|
||||
{
|
||||
thread_safe_increment32(&my_file_opened);
|
||||
my_atomic_add32_explicit(&my_file_opened, 1, MY_MEMORY_ORDER_RELAXED);
|
||||
if ((uint) fd >= my_file_limit)
|
||||
DBUG_RETURN(fd);
|
||||
my_file_info[fd].name = (char*) my_strdup(FileName, MyFlags);
|
||||
|
Reference in New Issue
Block a user