Posts by Catarina Pedreira • 51 points
3 posts
-
1
votes0
answers10
viewsQ: Is it possible that a lawsuit has pending files?
That is, is it possible for a process to continue running in user mode even if it has Signals left untreated, and only treats them when switching from core to user mode? Or so there is a Signal it…
-
2
votes1
answer421
viewsQ: Defining an abstract attribute in a non-extabstracted class
I want to be able to instantiate an employee class (so this can’t be abstract) and have an abstract salary attribute that will be static for each type of employee. I can do (in the working class):…
-
2
votes1
answer256
viewsQ: Error in running order of pthreads
My job main was like this (fnThread was set further back): int main() { int i; int *result; pthread_t tid[N]; for (i=0; i<N; i++) { if (pthread_create (&tid[i], 0 ,fnThread, (void*)(&i))…