The test does the following: 1 - runs a program to main without the OS plug-in and verifies no OS threads are in the process 2 - loads the OS plug-in and verifies the 3 OS plug-in threads are now in the current process 3 - verify the register contents of each thread that shows up 4 - unload the python OS plug-in and verify that the OS threads are gone. llvm-svn: 232401
8 lines
144 B
C
8 lines
144 B
C
#include <stdio.h>
|
|
|
|
int main (int argc, char const *argv[], char const *envp[])
|
|
{
|
|
puts("stop here"); // Set breakpoint here
|
|
return 0;
|
|
}
|