View Single Post
  #10  
Old 02-18-2014, 03:45 PM
The_WOZ The_WOZ is offline
Approved Member
 
Join Date: Jan 2010
Posts: 25
Default

Ah, it must be because the server is a child process to the wine executable, so strace is only logging the system calls from wine itself, and not the server.

Try this:

strace -o <logfilename> -e file -f <program>

the -o option outputs the log to a file
-e file now logs all file related operations, not just calls to file open.
-f logs system calls from child processes.
Reply With Quote