Searched refs:__data_racy (Results 1 – 6 of 6) sorted by relevance
73 static int __data_racy obj_pool_min_free = ODEBUG_POOL_SIZE;74 static int __data_racy obj_pool_free = ODEBUG_POOL_SIZE;76 static int __data_racy obj_pool_max_used;81 static int __data_racy debug_objects_maxchain __read_mostly;82 static int __data_racy __maybe_unused debug_objects_maxchecked __read_mostly;83 static int __data_racy debug_objects_fixups __read_mostly;84 static int __data_racy debug_objects_warnings __read_mostly;85 static int __data_racy debug_objects_enabled __read_mostly98 static int __data_racy debug_objects_allocated;99 static int __data_racy debug_objects_freed;
92 * 与 ``data_race(...)`` 相似,可以使用类型限定符 ``__data_racy`` 来标记一个变量97 int __data_racy stats_counter;
304 # define __data_racy volatile macro308 # define __data_racy macro
28 5. __data_racy, for example "int __data_racy a;"214 Use of __data_racy217 Adding the __data_racy type qualifier to the declaration of a variable219 enclosed by data_race(). However, __data_racy does not affect the221 __data_racy type qualifier as if it was the volatile keyword.223 Note well that __data_racy is subject to the same pointer-declaration227 int __data_racy *p; // Pointer to data-racy data.228 int *__data_racy p; // Data-racy pointer to non-data-racy data.
94 * Similar to ``data_race(...)``, the type qualifier ``__data_racy`` can be used100 int __data_racy stats_counter;
307 static long __data_racy test_data_racy;
Completed in 142 milliseconds