Displaying 5 results from an estimated 5 matches for "thread_init".
Did you mean:
g_thread_init
2006 Aug 28
0
"Bus Error" Under Mac OS X x86 with Wine 0.9.20
...1
}
It built and installed wine just fine. It's just when I run it that I
get "Bus Error". I decided to load up gdb to see what it thought, and
it had this to say:
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_PROTECTION_FAILURE at address: 0x7ffde064
thread_init () at thread.c:228
228 thread.c: No such file or directory.
in thread.c
(gdb) bt
#0 thread_init () at thread.c:228
#1 0x7bc2beea in __wine_process_init () at loader.c:2354
#2 0x60a088c1 in wine_init (argc=2, argv=0xbffff928, error=0xbffff4c0
"", error_size=1024) at loader.c...
2004 Aug 06
2
No audio with slackware for live station
He means that development of WinAmp 3 has discontinued. WA2 is being updated
to support WA3's extra features (video, media library), and WinAmp 5 (2+3=5)
is the main new development.
You can read the announcement on the WinAmp forums.
>===== Original Message From Stefan Neufeind <stefan@neufeind.net> =====
>On Fri, 16 May 2003 at 13:15:22, Geoff Shang wrote:
>
>> I
2012 Mar 11
2
[patch] Threading support in ssh-agent
...ocketEntry* e;
+ AuthWorker worker;
+
+ thread_lock(t);
+ while(1) {
+ if (req_queue_unlock_thread_get_and_lock_thread(t, &worker, &e)) {
+ sleep(1);
+ } else {
+ worker(e);
+ if (e->type == AUTH_INUSE) {
+ e->type = AUTH_CONNECTION;
+ }
+ }
+ }
+ return NULL;
+}
+
+int
+thread_init(struct Thread* t)
+{
+ if (pthread_mutex_init(&(t->lock), 0)) {
+ error("pthread_mutex_init(thread): %s", strerror(errno));
+ return -1;
+ }
+ return 0;
+}
+
+void
+thread_lock(struct Thread* t)
+{
+ while (pthread_mutex_lock(&(t->lock))) {
+ if (errno != EINTR) {
+ err...
2016 Apr 15
0
Wine release 1.9.8
...Fix stack alignment in CUSTOMPROC_wrapper.
ntdll/tests: Fix some test failures on Win 8+.
ntdll/tests: Add tests for iosb.Status value after pending FSCTL_PIPE_LISTEN call.
ntdll: Do not update iosb.Status after FSCTL_PIPE_LISTEN call.
ntdll: Preinitialize OS version data in thread_init.
ntdll: Handle stack guard pages on x86_64.
kernel32/tests: Use inline implementation of NtCurrentTeb for virtual tests.
kernel32/tests: Port stack commit tests to x86_64.
services: Initialize environment block immediately after startup.
Sergei Bolotov (2):
widl: Hand...
2019 Nov 15
0
Wine release 4.20
...l.
ntdll: Directly allocate the final process parameters structure.
winver: Fix program exit code.
ntdll: Support running .exe.so binaries in RtlCreateUserProcess().
ntdll: Initialize earlier things that need the executable name.
ntdll: Move some initializations out of thread_init().
ntdll: Load the main binary directly in ntdll when possible.
server: Get rid of the unused file parameter in exec_process.
kernel32: Move exec process functionality to ntdll.
kernel32: Use RtlCreateUserProcess() to start new processes.
kernel32: Move support for sta...