Add missing documentation for tasking_get_address_space

This commit is contained in:
pjht 2020-08-01 10:11:37 -05:00
parent a7f7cd0a77
commit d09697c7df

View File

@ -115,5 +115,11 @@ void tasking_unblock(pid_t pid,pid_t tid);
* Yield to the next ready thread in any process
*/
void tasking_yield();
/**
* Get the address_space of a process
* \param pid the PID of the process
* \return the address_space of the process
*/
void* tasking_get_address_space(pid_t pid);
#endif