Displaying 20 results from an estimated 20 matches for "getcurrentthreadid".
2006 May 11
9
world of warcraft doesnÄt work (sorry if double post)
if this is a doublepost please sorry bur the first post was blocked by
spamfilter because of wrong timesettings on my local computer. i reaplyed
to my original post and now im not shure if the mailserver thinks the
message is corrupt because of reply to a non existing message. here is the
originalmessage (again?)
Hi everyone,
thirst of all please forgive my bad english :)
i have installed wine
2006 Sep 20
1
kernel32.VirtualAlloc() limitation? - "Insufficient memory to perform operation"
...3a9
0009:Ret ntdll.RtlFreeHeap() retval=00000001 ret=7ed733a9
0009:Ret user32.PeekMessageA() retval=00000000 ret=00513b8c
0009:CALL SHW32.MemFreePtr(045d1b60) ret=00534d7e
0009:RET SHW32.MemFreePtr() retval=00000001 ret=00534d7e
0009:CALL SHW32.shi_getThreadPool() ret=00534bc9
0009:Call kernel32.GetCurrentThreadId() ret=0a93d090
0009:Ret kernel32.GetCurrentThreadId() retval=00000009 ret=0a93d090
0009:RET SHW32.shi_getThreadPool() retval=045c0000 ret=00534bc9
0009:CALL SHW32.MemAllocPtr(045c0000,00000041,00000000) ret=00534bd7
0009:RET SHW32.MemAllocPtr() retval=0464d3b8 ret=00534bd7
0009:CALL SHW32.shi_ge...
2001 Dec 03
1
GetCurrentThreadId()
Does anyone have any ideas as to why my application always crashes on calls
to "kernel32.GetCurrentThreadId()"?
Every time I call GCTID I get:
- a call to UnhandledExceptionFilter()
- producing an "Unhanded privileged instruction at address 0x40112584"
message box (which I've never seen popup, I only know it happens because I'm
reading the --debugmsg +relay output.)
Any ideas?
Qu...
2009 Jan 07
3
[LLVMdev] LLVM optmization
...}
for( nI = 1 ; nI <= paraml; nI++)
{
varx = varx + parami + 1 ;
vary = varx + nI;
}
return varx ;
}
unsigned long thread_call( LPVOID c )
{
int num = 1;
int (*fp)(int, int, double) = (int (*)(int, int,double)) c;
//printf("\n(1)threadid = %ld seqt=%ld inum=%d",GetCurrentThreadId(),num,inum);
int ret = fp(num,1000000000,1);
printf("\n(2)leu %ld threadid = %ld seqt=%ld ",ret , GetCurrentThreadId(),num);
return (unsigned long) ret;
}
///cronometro
unsigned long tini;
unsigned long tfim;
#define getmilisecs(x) (x)
#define num_th 100
unsigned long milisecs() { ret...
2002 Mar 21
4
ExitThread won't.
Okay, so with complete lack of any other ideas, I tried to
figure out what was wrong with my app (Proxomitron), which
is leaving unkillable processes around.
So I went into ExitThread, and added something like:
DPRINTF("%08lx:Exiting thread...(%d)\n", GetCurrentThreadId(),getpid());
exit(code);
right at the top of the function.
And, lo and behold, the processId matches the processes
that 'ps' can't kill. So the 'exit' isn't actually
terminating the process. How is that possible?
This was all done against today's CVS.
I don'...
2009 Apr 22
0
ActiveX error when running an application(VB6 based)
...0000001 ret=65f20968
0009:Call KERNEL32.FreeLibrary(65340000) ret=660196e5
0009:Ret KERNEL32.FreeLibrary() retval=00000001 ret=660196e5
0009:Call KERNEL32.ReleaseSemaphore(00000058,00000001,00000000) ret=6601971c
0009:Ret KERNEL32.ReleaseSemaphore() retval=00000001 ret=6601971c
0009:Call KERNEL32.GetCurrentThreadId() ret=660197f3
0009:Ret KERNEL32.GetCurrentThreadId() retval=00000009 ret=660197f3
0009:Call ntdll.RtlFreeHeap(01180000,00000000,01180230) ret=66019815
0009:Ret ntdll.RtlFreeHeap() retval=00000001 ret=66019815
0009:Call KERNEL32.TlsGetValue(00000006) ret=6601978b
0009:Ret KERNEL32.TlsGetValue()...
2006 Jun 18
1
Win32-Service and threading
...latform would provide a reasonable
interface for both windows and Unix platforms. During my testing I
noticed some odd behavior in my test program. Having written a couple
win32 services before I suspected some threading issues, so I did some
digging first just in Ruby using DL, I created a call to
GetCurrentThreadID and in logging I displayed the Current TID -- and
we are switching system threads in the ruby interpreter.
Looking at service.c, I see you are using RegisterServiceCtrlHandler,
there is no guarantee that it will be called from the main thread
(matter of fact it generally won''t). In Servic...
2009 Apr 22
0
wine-users Digest, Vol 45, Issue 102
...0000001 ret=65f20968
0009:Call KERNEL32.FreeLibrary(65340000) ret=660196e5
0009:Ret KERNEL32.FreeLibrary() retval=00000001 ret=660196e5
0009:Call KERNEL32.ReleaseSemaphore(00000058,00000001,00000000) ret=6601971c
0009:Ret KERNEL32.ReleaseSemaphore() retval=00000001 ret=6601971c
0009:Call KERNEL32.GetCurrentThreadId() ret=660197f3
0009:Ret KERNEL32.GetCurrentThreadId() retval=00000009 ret=660197f3
0009:Call ntdll.RtlFreeHeap(01180000,00000000,01180230) ret=66019815
0009:Ret ntdll.RtlFreeHeap() retval=00000001 ret=66019815
0009:Call KERNEL32.TlsGetValue(00000006) ret=6601978b
0009:Ret KERNEL32.TlsGetValue()...
2004 Aug 06
2
C++ wrapper for speex
...pSpeexHdr->lpData = (char*)pSound;
pSpeexHdr->dwBufferLength = decodedSamples *
sizeof(short);
pSpeexHdr->dwFlags = 0L;
pSpeexHdr->dwLoops = 0L;
// output audio to speaker
m_Player->PostThreadMessage(WM_PLAYSOUND_PLAYBLOCK,
GetCurrentThreadId(),(LPARAM) pSpeexHdr);
// clean up
// delete pSeexHdr;
// delete [] pSound;
return 1;
}
this produces unintelligible audio. may be you can
give me an opinion on how i can properly reconstruct
my PCM sample ( into WAVHDR) after the decode. this
would really...
2009 Jan 22
2
wine for linux and Mac the same or different? (problem)
Hello
preface: sorry for my english, but that is not my native language...
I want to have a nice photo editor running named FiXfoto.
(a Shareware-Download can be found is here:
german shareware = http://www.j-k-s.com/stats/getfile.php?id=41 )
There is a english shareware version too, but i didnt tried it.
Normally i use Mac Osx and want to use it there. I can install this application
2004 Aug 06
1
C++ wrapper for speex
...pSpeexHdr->lpData = (char*)pSound;
pSpeexHdr->dwBufferLength = lpHdr->dwBufferLength;
pSpeexHdr->dwFlags = 0L;
pSpeexHdr->dwLoops = 0L;
m_Player->PostThreadMessage(WM_PLAYSOUND_PLAYBLOCK,
GetCurrentThreadId(),(LPARAM) lpHdr);
}
}
this handler would simply capture the voice data and
immidiately play it as it is, and as far as that is
concern, it is working.
my speex case study is simple. i just want to encode
the raw data recieved by the handler and immidiately
decode it before posting W...
2009 Jan 08
0
[LLVMdev] LLVMdev Digest, Vol 55, Issue 16
...t; > }
> >
> > return varx ;
> > }
> > unsigned long thread_call( LPVOID c )
> > {
> > int num = 1;
> > int (*fp)(int, int, double) = (int (*)(int, int,double)) c;
> > //printf("\n(1)threadid = %ld seqt=%ld inum=%d",GetCurrentThreadId(),num,inum);
> > int ret = fp(num,1000000000,1);
> > printf("\n(2)leu %ld threadid = %ld seqt=%ld ",ret , GetCurrentThreadId(),num);
> > return (unsigned long) ret;
> > }
> > ///cronometro
> > unsigned long tini;
> > unsigned...
2024 Jun 30
0
Making use of win32_segv
...ontext and call R
API from there. On Windows, where a simple REprintf() may go into a GUI
window, the crash handler may be written in a more cautious manner:
- Only set up the crash handler in Rterm, because this is mostly for
the benefit of the people reading the R CMD check output
- Compare GetCurrentThreadId() against a saved value and don't call
R_Traceback() if it doesn't match
- Rewrite win32_segv in terms of StringCcbPrintf to static storage and
WriteFile(GetStdHandle(STD_ERROR_HANDLE), ...), which may be too much
Attached is a crude first draft to see if the approach is viable. If...
2004 Aug 06
0
C++ wrapper for speex
...Data,lpHdr->dwBufferLength);
>
> pSpeexHdr->lpData = (char*)pSound;
> pSpeexHdr->dwBufferLength = lpHdr->dwBufferLength;
> pSpeexHdr->dwFlags = 0L;
> pSpeexHdr->dwLoops = 0L;
>
> m_Player->PostThreadMessage(WM_PLAYSOUND_PLAYBLOCK,
> GetCurrentThreadId(),(LPARAM) lpHdr);
> }
> }
>
> this handler would simply capture the voice data and
> immidiately play it as it is, and as far as that is
> concern, it is working.
>
> my speex case study is simple. i just want to encode
> the raw data recieved by the handler and...
2001 Mar 13
3
problems running homesite
Hi there,
I have just installed wine (release 20010305) and it looks to work good.
I can run notepad without trouble, winecheck.pl has one bad and one critical result:
023. Checking device needed for DGA (option "UseDGA"): /dev/BAD (/dev/mem is not writable for you).
- ADVICE: Use chmod as root to fix it ("man chmod").
025. Checking availability of windows registry
2004 Aug 06
1
C++ wrapper for speex
...> pSpeexHdr->lpData = (char*)pSound;
> pSpeexHdr->dwBufferLength = decodedSamples *
> sizeof(short);
> pSpeexHdr->dwFlags = 0L;
> pSpeexHdr->dwLoops = 0L;
>
> // output audio to speaker
> m_Player->PostThreadMessage(WM_PLAYSOUND_PLAYBLOCK,
> GetCurrentThreadId(),(LPARAM) pSpeexHdr);
>
> // clean up
> // delete pSeexHdr;
> // delete [] pSound;
>
> return 1;
> }
>
> this produces unintelligible audio. may be you can
> give me an opinion on how i can properly reconstruct
> my PCM sample ( into WAVHDR) after the decod...
2010 Oct 18
2
Wine on Windows
...rk?
Another design decision - I am trying to use the REAL ntdll.dll and kernel32.dll as much as possible. This might be a problem when Wine must create a new process (is it?) and it uses the real kernel32.dll's CreateProcess, which doesn't communicate with wineserver...? Another problem is GetCurrentThreadId and ProcessId - they return their Windows values, which are different than those that wineserver has. This could be a problem.
I am using Windows 7 Ultimate x64. Anything else would be a problem - I've tried running it on a 32-bit XP, but there are some functions missing from ntdll and kernel3...
2006 Jun 18
7
[Fwd: Ruby Win32-Service]
Thoughts?
Dan
-------------- next part --------------
An embedded message was scrubbed...
From: "Patrick Hurley" <phurley at gmail.com>
Subject: Ruby Win32-Service
Date: Sun, 18 Jun 2006 12:46:01 -0400
Size: 2863
Url: http://rubyforge.org/pipermail/win32utils-devel/attachments/20060618/cc346796/attachment.eml
2018 May 11
0
Wine release 3.8
...or receiving probe messages.
Pablo Martin (2):
d3d11: Handle D3D11_FEATURE_ARCHITECTURE_INFO in d3d11_device_CheckFeatureSupport().
d3d11/tests: Add tests for D3D11_FEATURE_ARCHITECTURE_INFO in CheckFeatureSupport().
Piotr Caban (3):
msvcr120: Add Concurrency::details::platform::GetCurrentThreadId export.
kernel32: Fix CreateProcess behavior when batch script command contains '"' characters.
msvcr110: Try SNAME when matching locale.
Qian Hong (1):
server: Map EXDEV to STATUS_NOT_SAME_DEVICE.
Sebastian Lackner (1):
ntoskrnl.exe/tests: Add test driver.
V...
2018 May 25
0
Wine release 3.9
...hangs during install
44964 Anno 2205 needs oMask shader register implementation
44974 Cresteaju ("standard" version): Hang before title screen
45080 Frostpunk crashes (requires IDXGIDevice2)
45088 Native Instruments Traktor 2.11 crashes on unimplemented function msvcp140.dll.?GetCurrentThreadId at platform@details at Concurrency@@YAJXZ
45170 Cygwin/MSYS2 needs EXDEV error code mapped to STATUS_NOT_SAME_DEVICE (rename of cross-device links)
45172 FrameMaker 7.2 and Framemaker 8 (trial) needs implementation of atmlib.dll.ATMFinish
45174 Icinga 2 'check_ping' tool with IPv6...