You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running Acme on AIX 7.3, the window briefly flashes on the screen, then disappears, and the following message is printed to the terminal:
acme: can't post service: Restart the system call
This occurs on AIX 7.3, and possibly 7.2 though I haven't tested it on 7.2. This was also tested with a working build on AIX 7.1 and copied to a 7.3 system and the same behavior observed.
The error is generated from src/cmd/acme/fsys.c:127
Though it is hard to tell where the "Restart the system call" return value is coming from.
This appears to be an issue related to timing and possibly threads. If the program is run under the debugger with a breakpoint set in post9pservice, and the post9pservice call is single-stepped through, the window eventually gets displayed and then works. Further debugging assistance would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
On newer versions of AIX (at least 7.3, possibly 7.2), when a program calls
post9pservice, the call fails due to a timing problem just after the
call to waitfor. Adding this short delay allows the function to succeed
and the program works correctly on AIX afterwards.
Fixes9fans#699
When running Acme on AIX 7.3, the window briefly flashes on the screen, then disappears, and the following message is printed to the terminal:
This occurs on AIX 7.3, and possibly 7.2 though I haven't tested it on 7.2. This was also tested with a working build on AIX 7.1 and copied to a 7.3 system and the same behavior observed.
The error is generated from src/cmd/acme/fsys.c:127
Though it is hard to tell where the "Restart the system call" return value is coming from.
This appears to be an issue related to timing and possibly threads. If the program is run under the debugger with a breakpoint set in post9pservice, and the post9pservice call is single-stepped through, the window eventually gets displayed and then works. Further debugging assistance would be greatly appreciated.
The text was updated successfully, but these errors were encountered: