X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..2a1bd2d3eef5c7a7bb14f4bb9fdbca9a96ee4752:/osfmk/man/task_resume.html diff --git a/osfmk/man/task_resume.html b/osfmk/man/task_resume.html old mode 100755 new mode 100644 index 78fcdf022..7eb73e40b --- a/osfmk/man/task_resume.html +++ b/osfmk/man/task_resume.html @@ -1 +1,39 @@ -

task_resume


Function - Decrement the target task's suspend count.

SYNOPSIS

kern_return_t   task_resume
                (task_t         task);

PARAMETERS

task
[in task send right] The port to the task to be resumed.

DESCRIPTION

The task_resume function decrements the suspend count for task. If the task's suspend count goes to zero, the function resumes any suspended threads within the task. To resume a given thread, the thread's own suspend count must also be zero.

NOTES

An attempt to lower the suspend count below zero is ignored.

RETURN VALUES

Only generic errors apply.

RELATED INFORMATION

Functions: task_create, task_info, task_suspend, task_terminate, thread_info, thread_resume, thread_suspend. \ No newline at end of file +

task_resume

+
+

+Function - Decrement the target task's suspend count. +

SYNOPSIS

+
+kern_return_t   task_resume
+                (task_t         task);
+
+

PARAMETERS

+
+

+

task +
+[in task send right] +The port to the task to be resumed. +
+

DESCRIPTION

+

+The task_resume function decrements the suspend count +for task. If the task's suspend count goes to zero, the +function resumes any suspended threads within the task. To resume +a given thread, the thread's own suspend count must also be zero. +

NOTES

+

+An attempt to lower the suspend count below zero is ignored. +

RETURN VALUES

+

+Only generic errors apply. +

RELATED INFORMATION

+

+Functions: +task_create, +task_info, +task_suspend, +task_terminate, +thread_info, +thread_resume, +thread_suspend.