diff options
author | kib <kib@FreeBSD.org> | 2012-12-04 00:32:12 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2012-12-04 00:32:12 +0000 |
commit | 3cc13060137ae5fbcffc60b9273078c18a738582 (patch) | |
tree | e2e888aca811022a61f7f69cd2891e14c4be2265 /share | |
parent | a726c7af5b6a56aac9b16b6a5b255a64b3a23adb (diff) | |
download | FreeBSD-src-3cc13060137ae5fbcffc60b9273078c18a738582.zip FreeBSD-src-3cc13060137ae5fbcffc60b9273078c18a738582.tar.gz |
Document the interpretation of the negative value of ticks for
taskqueue_enqueue_timeout(9).
MFC after: 3 days
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/taskqueue.9 | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/share/man/man9/taskqueue.9 b/share/man/man9/taskqueue.9 index f1a43b6..cce1fba 100644 --- a/share/man/man9/taskqueue.9 +++ b/share/man/man9/taskqueue.9 @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 26, 2011 +.Dd December 4, 2012 .Dt TASKQUEUE 9 .Os .Sh NAME @@ -180,6 +180,13 @@ is used to schedule the enqueue after the specified amount of Only non-fast task queues can be used for .Va timeout_task scheduling. +If the +.Va ticks +argument is negative, the already scheduled enqueueing is not re-scheduled. +Otherwise, the task is schedules for enqueueing in the future, +after the absolute value of +.Va ticks +is passed. .Pp The .Fn taskqueue_cancel |