Skip to content

Commit 21b34b3

Browse files
committed
ci: bump up the deprecation date of os.signal to 2021-06-18
1 parent 4c22370 commit 21b34b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vlib/os/signal.c.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ type SignalHandler = fn (Signal)
4141
fn C.signal(signal int, handlercb SignalHandler) voidptr
4242

4343
[deprecated: 'use os.signal_opt() instead']
44-
[deprecated_after: '2021-05-18']
44+
[deprecated_after: '2021-06-18']
4545
pub fn signal(signum int, handler voidptr) voidptr {
4646
return voidptr(signal_opt(Signal(signum), handler) or { C.SIG_ERR })
4747
}

0 commit comments

Comments
 (0)