Return to user process

Programming, for all ages and all languages.
Post Reply
trashman
Posts: 5
Joined: Wed Jul 31, 2019 6:18 am

Return to user process

Post by trashman »

Hello!
Earlier I asked about multitasking.
viewtopic.php?f=13&t=33802
I came closer to solving the problem. I fixed all the errors in working with the stack (I think so). Now the errors do not bother me, but the fork does not return to the function in which it was called, however the retern is triggered. The process itself is in an isolated address space and is not copied to a new task. I thought that was the problem, but I was wrong. Giving access to this piece of memory, I could not solve the problem. What could be wrong??
Thus, if instead of returning from return, we switch to another kernel function, the task will work there. It turns out that the process does not know how to return to the user's task?

Code: Select all

void main()
{
	int b = syscall_fork();	

	if(b==0)
	{
		syscall_test(b); // print uid, work's 
	}
	else
	{
		syscall_test(b); // print uid, does not work
	}

	while(1){
		for (int i = 0; i < 1000000; ++i){}
		syscall_console_test_print(6);
	}
}
clarc
Posts: 1
Joined: Fri Dec 06, 2019 5:28 am
Libera.chat IRC: nate

Re: Return to user process

Post by clarc »

Sounds like you need to store the three asssiignees as individual process variables and then use an expression in the assignee fields.
Post Reply