search for: infoptr

Displaying 13 results from an estimated 13 matches for "infoptr".

2002 Mar 01
4
UI regression
Hi, Earlier this year I "upgraded" from wine 20010510 to 20011226 in order to see if some kind of resource leak was fixed which caused screen redraws to get progressively slower and slower and slower and slower, .... That was fixed but there seemed to be a significant number of graphics and UI regressions. I've just upgraded to 20020228 to see if things were any better and within
2001 Sep 04
0
Presumed bug found in SCROLL_GetPtrScrollInfo
...looks like this: [ controls/scroll.c ]: 126 /*********************************************************************** 127 * SCROLL_GetPtrScrollInfo 128 */ 129 static SCROLLBAR_INFO *SCROLL_GetPtrScrollInfo( WND* wndPtr, INT nBar ) 130 { 131 SCROLLBAR_INFO *infoPtr; 132 HGLOBAL hmem; 133 if (!wndPtr) return NULL; 134 switch(nBar) 135 { 136 case SB_HORZ: infoPtr = (SCROLLBAR_INFO *)wndPtr->pHScroll; break; 137 case SB_VERT: infoPtr = (SCROLLBAR_INFO *)wndPtr->pVScroll; break; 138 /*...
2008 Sep 29
3
wine: Unhandled page fault on read access to 0x00000064
...00181340 000201b4 00334bc4 7e730f57 0x00334b9c: 00000000 000201b4 00334bb4 7ead158d 0x00334bac: 00000001 00000000 00334bc4 7e72da14 0x00334bbc: 7e749294 00181340 003354e4 7e736cfe 0x00334bcc: 00000000 00000000 00000000 00000000 Backtrace: =>1 0x7e72d7a6 TREEVIEW_RecalculateVisibleOrder+0x76(infoPtr=0x181340, start=0x208598) [/home/xekhz/wine-1.1.5/dlls/comctl32/treeview.c:906] in comctl32 (0x00334b94) 2 0x7e730f57 TREEVIEW_Size+0x87(infoPtr=<register ESI not in topmost frame>, wParam=<is not available>, lParam=<is not available>) [/home/xekhz/wine-1.1.5/dlls/comctl32/treev...
2017 Aug 03
2
Dependence analysis - missing loop-carried dependencies?
...o = &getAnalysis<DependenceAnalysisWrapperPass>().getDI(); // check dependencies between each pair of instructions for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; I++) { for (inst_iterator J = I; J != E; J++) { std::unique_ptr<Dependence> infoPtr; infoPtr = depinfo->depends(&*I, &*J, true); Dependence *dep = infoPtr.get(); if (dep != NULL && !dep->isInput()) { if (!dep->isLoopIndependent()) errs() << "[L]"; if (dep->isConfused()) errs() << "[C...
2015 Oct 28
0
How to find memory utilization percent of kvm guest?
I currently use following approach but its failing Find Max memory using following API         vdgiRet = virDomainGetInfo(domPtr, infoPtr);         memTotal = infoPtr->memory; Find current utilization using following API                 rVal = virDomainMemoryStats (domPtr, memStats, VIR_DOMAIN_MEMORY_STAT_NR, 0) ;         for (i = 0; i < rVal; i++)         {             if (memStats[i].tag == 7)                 memUsed = me...
2010 Nov 28
2
wine: Unhandled page fault on read access
...[/build/buildd/wine1.3-1.3.8/dlls/user32/message.c:3042] in user32 (0x0032f090) 50 0x68110cac SendMessageW+0x4b(hwnd=0x1008e, msg=0x004e, wparam=0x01f5, lparam=0x32f0cc) [/build/buildd/wine1.3-1.3.8/dlls/user32/message.c:3165] in user32 (0x0032f0f0) 51 0x685604b9 TREEVIEW_SendSimpleNotify+0xe8(infoPtr=0x1e8180, code=<is not available>) [/build/buildd/wine1.3-1.3.8/dlls/comctl32/treeview.c:496] in comctl32 (0x0032f260) 52 0x6856b276 TREEVIEW_WindowProc+0x3805(hwnd=0x10094, uMsg=0x0204, wParam=0x0002, lParam=0xc000c) [/build/buildd/wine1.3-1.3.8/dlls/comctl32/treeview.c:4249] in comctl32 (...
2002 Mar 02
3
sorting listview by clicking header
thanks to all of the great work that has been done to listview, my app is finally readable. cudos on the latest patch that fixed up text (that was getting truncated), it's correct this time around. anyways, the one thing missing to get my app working is column sorting (done by clicking a header). i have below the output from a "trace+listview,trace+header" run of the app, clipped
2008 Jul 22
1
Does anyone have install BobCad-Cam on Ubuntu using wine?
Hi, does anyone have install BobCad-Cam on Ubuntu using wine? I just want to know if it's possible to run this application on ubuntu. I already installed but when I try to run it, I can see the logo but then it chashes and send me this message: anagisela at anagisela-laptop:~$ env WINEPREFIX="/home/anagisela/.wine" wine "C:\Program Files\BobCAD-CAM\BobCAD-CAM
2012 Feb 14
3
[LLVMdev] LLVM GHC Backend: Tables Next To Code
...how the C ABI keeps track of metadata associated with stack frames for C++ exceptions I think, but I don't know much about how it works). A slightly more cunning scheme would be to have each code fragment start with a dummy instruction containing the address of the info table, e.g. movl <infoptr>, %dummy this should be faster than the double-indirection scheme, but is very architecture-dependent and probably involves some horrible hacks in the compiler (could it even be done with LLVM? Maybe with the mangler)." --- Cheers, David On 14 February 2012 02:59, Chris Lattner <cla...
2010 May 21
0
Wine release 1.2-rc1
...XcvDataPort_AddPort by properly checking return values and avoiding a duplicate test. user32/tests: Make checks in test_LoadImageFile and test_LoadImage more comprehensive. quartz: Remove unused variable pOutputPin from MPEGSplitter_process_sample. comctl32: Remove unused variable infoPtr from TVIEW_StyleChanging. comctl32: Remove document of (already removed) infoPtr from LISTVIEW_StyleChanged. comctl32/tests: Remove some dead code from TaskManager_OnRestoreMainWindow. comctl32/tests: Check for the outcome of the SendMessage calls in test_monthcal_size. wine...
2012 Feb 14
0
[LLVMdev] LLVM GHC Backend: Tables Next To Code
On Feb 13, 2012, at 6:49 AM, Sergiu Ivanov wrote: > On behalf of GHC hackers, I would like to discuss the possibility of > having a proper implementation of the tables-next-to-code optimisation > in LLVM. It would be great to have this. However, the design will be tricky. Is there anything that spells out how the TNTC optimization works at the actual machine instruction level? It
2012 Feb 13
3
[LLVMdev] LLVM GHC Backend: Tables Next To Code
Hello everyone, On behalf of GHC hackers, I would like to discuss the possibility of having a proper implementation of the tables-next-to-code optimisation in LLVM. Currently, the object code produced by all three GHC backends follows the convention that the table with the metadata of a closure is located immediately before the code of the closure. This makes it possible to get to both the code
2007 Mar 02
0
Wine release 0.9.32
...tect from 1 byte static buffer overflow. netapi32: Fixed array overflow (spotted by Coverity). Miko?aj Zalewski (10): comctl32: rebar: Rewrite the layout code. comctl32: rebar: Test and fix the WM_SIZE handler and REBAR_ForceResize. comctl32: rebar: Store the coordinates of infoPtr->calcSize swapped for CCS_VERT. comctl32: rebar: Store the oldSize as a local variable. comctl32: listview: Set the style in WM_CREATE. comctl32: rebar: Test the RBN_HEIGHTCHANGE notify and do some fixes. comctl32: rebar: WM_SETFONT should send a RBN_HEIGHTCHANGE if neces...