/glibc-2.36/sysdeps/mach/hurd/ |
D | ptrace.c | 46 error_t read_data (task_t task, vm_address_t *ourpage, vm_size_t *size) in ptrace() 51 err = __vm_read (task, trunc_page (addr), *size, ourpage, size); in ptrace() 56 error_t fetch_user_thread (task_t task, thread_t *thread) in ptrace() 60 error_t err = __task_threads (task, &threads, &nthreads); in ptrace() 78 task_t task = __pid2task (pid); in ptrace() local 80 if (task == MACH_PORT_NULL) in ptrace() 82 err = fetch_user_thread (task, &thread); in ptrace() 83 __mach_port_deallocate (__mach_task_self (), task); in ptrace() 109 task_t task = __pid2task (pid); in ptrace() local 110 if (task == MACH_PORT_NULL) in ptrace() [all …]
|
D | setpriority.c | 32 task_t task; in __setpriority() local 33 error_t piderr = __USEPORT (PROC, __proc_pid2task (port, pid, &task)); in __setpriority() 51 prierr = __task_policy (task, POLICY_TIMESHARE, in __setpriority() 57 prierr = __task_priority (task, NICE_TO_MACH_PRIORITY (prio), 1); in __setpriority() 59 __mach_port_deallocate (__mach_task_self (), task); in __setpriority()
|
D | spawni.c | 104 task_t task; in __spawni() local 315 0, &task); in __spawni() 321 err = __USEPORT (PROC, __proc_task2pid (port, task, &new_pid)); in __spawni() 323 err = __USEPORT (PROC, __proc_task2proc (port, task, &proc)); in __spawni() 325 err = __USEPORT (PROC, __proc_child (port, task)); in __spawni() 811 (file, task, in __spawni() 822 return __file_exec (file, task, in __spawni() 936 if (task != MACH_PORT_NULL) in __spawni() 940 __task_terminate (task); in __spawni() 941 __mach_port_deallocate (__mach_task_self (), task); in __spawni()
|
/glibc-2.36/malloc/ |
D | tst-mallocstate.c | 270 struct allocation_task *task = allocation_tasks + i; in initial_allocations() local 271 task->allocation.data = dumped_heap_alloc (task->allocation.size); in initial_allocations() 272 randomize_buffer (task->allocation.data, task->allocation.size, in initial_allocations() 273 task->allocation.seed); in initial_allocations() 394 struct allocation_task *task = allocation_tasks + i; in do_test() local 395 switch (task->action) in do_test() 398 check_allocation (&task->allocation, i); in do_test() 399 free (task->allocation.data); in do_test() 400 task->allocation.data = NULL; in do_test() 404 check_allocation (&task->allocation, i); in do_test() [all …]
|
/glibc-2.36/nptl/ |
D | tst-thread-affinity-pthread2.c | 40 struct affinity_access_task *task = closure; in affinity_access_thread() local 41 if (task->get) in affinity_access_thread() 42 task->result = pthread_getaffinity_np in affinity_access_thread() 43 (task->thread, task->size, task->set); in affinity_access_thread() 45 task->result = pthread_setaffinity_np in affinity_access_thread() 46 (task->thread, task->size, task->set); in affinity_access_thread() 53 struct affinity_access_task task = in run_affinity_access_thread() local 61 int ret = pthread_create (&thr, NULL, affinity_access_thread, &task); in run_affinity_access_thread() 75 if (task.result != 0) in run_affinity_access_thread() 77 errno = task.result; in run_affinity_access_thread()
|
/glibc-2.36/hurd/ |
D | hurdexec.c | 36 _hurd_exec (task_t task, file_t file, in _hurd_exec() argument 39 return _hurd_exec_paths (task, file, NULL, NULL, argv, envp); in _hurd_exec() 53 _hurd_exec_paths (task_t task, file_t file, in _hurd_exec_paths() argument 91 if (i == INIT_PORT_PROC && task != __mach_task_self ()) in _hurd_exec_paths() 95 if (err = __USEPORT (PROC, __proc_task2proc (port, task, &ports[i]))) in _hurd_exec_paths() 158 if (task == __mach_task_self ()) in _hurd_exec_paths() 423 err = __file_exec_paths (file, task, flags, in _hurd_exec_paths() 436 err = __file_exec (file, task, flags, in _hurd_exec_paths() 447 if ((i == INIT_PORT_PROC && task != __mach_task_self ()) in _hurd_exec_paths()
|
D | pid2task.c | 24 task_t task; in __pid2task() local 26 err = __USEPORT (PROC, __proc_pid2task (port, pid, &task)); in __pid2task() 28 return err ? (__hurd_fail (err), MACH_PORT_NULL) : task; in __pid2task()
|
D | hurdpid.c | 47 task_t task, in _S_msg_proc_newids() argument 52 if (task != __mach_task_self ()) in _S_msg_proc_newids() 55 __mach_port_deallocate (__mach_task_self (), task); in _S_msg_proc_newids()
|
D | hurd.h | 249 extern error_t _hurd_exec (task_t task, 256 extern error_t _hurd_exec_paths (task_t task, 325 extern pid_t __task2pid (task_t task), task2pid (task_t task);
|
D | catch-exc.c | 27 task_t task, in _S_catch_exception_raise() argument 42 if (task != __mach_task_self ()) in _S_catch_exception_raise() 118 task_t task, in _S_catch_exception_raise_state_identity() argument
|
D | task2pid.c | 21 __task2pid (task_t task) in __task2pid() argument 25 err = __USEPORT (PROC, __proc_task2pid (port, task, &pid)); in __task2pid()
|
D | hurdfault.c | 41 task_t task, 56 || thread != _hurd_msgport_thread || task != __mach_task_self ()) 102 task_t task, in _hurdsig_fault_catch_exception_raise_state_identity() argument
|
D | hurdlock.c | 109 task_t task = __pid2task (pid); in valid_pid() local 110 if (task == MACH_PORT_NULL) in valid_pid() 113 __mach_port_deallocate (__mach_task_self (), task); in valid_pid()
|
D | hurdauth.c | 167 task_t task, in _S_msg_del_auth() argument 174 if (!_hurd_refport_secure_p (task)) in _S_msg_del_auth()
|
/glibc-2.36/mach/ |
D | setup-thread.c | 36 __mach_setup_thread (task_t task, thread_t thread, void *pc, in __mach_setup_thread() argument 50 error = __vm_allocate (task, &stack, size + __vm_page_size, anywhere); in __mach_setup_thread() 73 if (error = __vm_protect (task, stack, __vm_page_size, 0, VM_PROT_NONE)) in __mach_setup_thread()
|
D | mach.h | 92 kern_return_t __mach_setup_thread (task_t task, thread_t thread, void *pc, 95 kern_return_t mach_setup_thread (task_t task, thread_t thread, void *pc,
|
D | lowlevellock.h | 43 mach_port_t task,
|
D | err_kern.sub | 69 "(os/kern) invalid task",
|
D | err_server.sub | 87 "(server/task_master) invalid task id",
|
/glibc-2.36/manual/ |
D | resource.texi | 715 for a task. 718 scheduling policy @var{policy} to the task with ID @var{pid}, 719 or the calling task if @var{pid} is zero. If @var{policy} is 745 The calling task does not have @code{CAP_SYS_NICE} permission and 750 The calling task does not have @code{CAP_SYS_NICE} permission and its 751 owner is not the target task's owner. I.e., the effective uid of the 752 calling task is neither the effective nor the real uid of task 758 There is no task with pid @var{pid} and @var{pid} is not zero. 785 This function returns the scheduling policy assigned to the task with 786 ID @var{pid}, or the calling task if @var{pid} is zero. [all …]
|
/glibc-2.36/sysdeps/mach/ |
D | configure.ac | 64 processor processor_set task task_notify thread_act vm_map \
|
D | configure | 249 processor processor_set task task_notify thread_act vm_map \
|
/glibc-2.36/timezone/ |
D | africa | 865 # http://www.tap.info.tn/en/index.php?option=com_content&task=view&id=1188&Itemid=50 889 # <a href="http://www.tap.info.tn/en/index.php?option=com_content&task=view&id=26813&Itemid=157"> 890 # http://www.tap.info.tn/en/index.php?option=com_content&task=view&id=26813&Itemid=157 894 # <a href="http://www.tap.info.tn/ar/index.php?option=com_content&task=view&id=61240&Itemid=1"> 895 # http://www.tap.info.tn/ar/index.php?option=com_content&task=view&id=61240&Itemid=1
|
D | asia | 1652 # <a href="http://www.app.com.pk/en_/index.php?option=com_content&task=view&id=73043&Itemid=1"> 1653 # http://www.app.com.pk/en_/index.php?option=com_content&task=view&id=73043&Itemid=1 1778 # http://english.pnn.ps/index.php?option=com_content&task=view&id=596&Itemid=5 1819 # <a href="http://arabic.pnn.ps/index.php?option=com_content&task=view&id=50850"> 1820 # http://arabic.pnn.ps/index.php?option=com_content&task=view&id=50850
|
/glibc-2.36/po/ |
D | be.po | 1011 msgid "cannot open %s/task" 1012 msgstr "немагчыма адкрыць %s/task" 1016 msgid "cannot prepare reading %s/task" 1017 msgstr "немагчыма падрыхтавацца да чытання %s/task" 1031 msgid "no valid %s/task entries"
|