You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[sanitize(realtime = "nonblocking")]//~ WARN: the async executor can run blocking code, without realtime sanitizer catching it [rtsan_nonblocking_async]
28
+
asyncfnasync_nonblocking(){}
29
+
30
+
fntest(){
31
+
let _async_block = {
32
+
#[sanitize(realtime = "nonblocking")]//~ WARN: the async executor can run blocking code, without realtime sanitizer catching it [rtsan_nonblocking_async]
33
+
async{}
34
+
};
35
+
36
+
let _async_closure = {
37
+
#[sanitize(realtime = "nonblocking")]//~ WARN: the async executor can run blocking code, without realtime sanitizer catching it [rtsan_nonblocking_async]
0 commit comments