Function detach [src]

Release the obligation of the caller to call join() and have the thread clean up its own resources on completion. Once called, this consumes the Thread object and invoking any other functions on it is considered undefined behavior.

Prototype

pub fn detach(self: Thread) void

Parameters

self: Thread

Example

test detach { if (builtin.single_threaded) return error.SkipZigTest; var value: usize = 0; var event = ResetEvent{}; const thread = try Thread.spawn(.{}, testIncrementNotify, .{ &value, &event }); thread.detach(); event.wait(); try std.testing.expectEqual(value, 1); }

Source

pub fn detach(self: Thread) void { return self.impl.detach(); }