Displaying 20 results from an estimated 6000 matches similar to: "Packet Tracer 4 with Wine"
2009 Feb 28
1
kernel memory access tracer
Hi
On Fri, 27 Feb 2009 22:39:06 +0100
Vegard Nossum <vegard.nossum at gmail.com> wrote:
> I actually wanted to ask some questions about Nouveau and the NVIDIA
> drivers. I was wondering if there would be any point in extending
> kmemcheck to track this driver's use of kernel memory. We could quite
> easily make a "memory access tracer", which would show all the
2009 Feb 05
0
[LLVMdev] C++ ray tracer performance: gcc 4.3.2 vs llvm-gcc 4.2.1
On the off chance anyone here is interested in more performance results, I
compiled and ran the fastest of the implementations of the ray tracer in C++
from my language comparison:
http://www.ffconsultancy.com/languages/ray_tracer/
This is a small program with a relatively large hotpath. Specifically, around
30% of the time is spend in the ray sphere intersection but another 30% is
also
2010 Jun 29
1
[LLVMdev] problems building vmkit
Hi All,
Thanks Nicolas for pointing out that I needed --enable-targets=x86,cpp for
my
llvm config to get vmkit to build. The process gets a lot farther but fails
in
different places depending upon the vmkit config (Can you please see the
three
case below?).
My machine is a intel core i7 running ubuntu karmic and gcc 4.4.1.
What arch/OS/distro/gcc do you all have VMKit working on?
thanks for
2010 Jul 19
2
[LLVMdev] Building VMKit
Hi,
I'm trying to build VMKit from SVN, and I'm getting a bunch of errors that
all seem to be related to the TRACER macro not getting defined:
llvm[3]: Compiling Assembly.cpp for Release+Asserts build
In file included from Assembly.cpp:15:
Assembly.h:140: error: variable or field ‘TRACER’ declared void
In file included from Assembly.cpp:19:
N3.h:109: error: variable or field ‘TRACER’
2005 Dec 26
1
Seg fault with trace
(Under 2.2.0, Mac)
I have been unable to reduce this to a simple case, so I'll include my
full code, and my intentions. The problem I'm trying to solve is that
while many defaults (eg. na.rm=F, drop=T) make sense for interactive
programming, they tend to be a bit of a pain when developing a
package. For example, I often forget to use drop=FALSE, only test
with multiple columns and then
2009 Jul 12
1
Booting problem with memdisk + Thinkpad + USB
Hi,
I encountered a booting problem with memdisk 2.83, USB and IBM Thinkpad
T61, apparently the same issue as described here:
http://syslinux.zytor.com/archives/2008-April/009850.html
The boot process always stops after "Loading boot sector... booting...".
With debug tracers enabled, the last few output lines are:
Loading boot sector... FR<p>Dbooting...
2008 Apr 28
4
Cad/Cam Package problem
Hi All,
I have just moved over to PCLINUXOS2007 from Windows XP and have found it to be a great Distro.
The only software I'm keeping Windows XP for is a high end Cad/Cam Package called AlphacamV2004 from Licom Systems which I use for work and home.
I've installed Alphacam with Wine version 0.9.58 and the Advanced Lathe module seems to work fine with no bugs so far, the Advanced Mill 3axis
2008 Oct 28
2
[LLVMdev] ldc (LLVM backend for the D Programming Language) has x86-64 support
Hello everyone,
I just thought I would let people here know that ldc (llvm backend for the D
Programming Language) is getting pretty usable (a few larger libraries
compile) and it now has x86-64 support added. I decided to run some timings
on some D and C++ code to compare ldc to dmd (the mainline compiler), gdc
(the gcc based D compiler) and g++. I used a ray tracing program found in
this
2008 Oct 28
0
[LLVMdev] ldc (LLVM backend for the D Programming Language) has x86-64 support
On Oct 27, 2008, at 11:03 PM, Kelly W wrote:
> Hello everyone,
>
> I just thought I would let people here know that ldc (llvm backend
> for the D Programming Language) is getting pretty usable (a few
> larger libraries compile) and it now has x86-64 support added. I
> decided to run some timings on some D and C++ code to compare ldc to
> dmd (the mainline compiler),
2016 May 25
3
[PATCH] x86/paravirt: Do not trace _paravirt_ident_*() functions
?ukasz Daniluk reported that on a RHEL kernel that his machine would lock up
after enabling function tracer. I asked him to bisect the functions within
available_filter_functions, which he did and it came down to three:
_paravirt_nop(), _paravirt_ident_32() and _paravirt_ident_64()
It was found that this is only an issue when noreplace-paravirt is added to
the kernel command line.
This means
2016 May 25
3
[PATCH] x86/paravirt: Do not trace _paravirt_ident_*() functions
?ukasz Daniluk reported that on a RHEL kernel that his machine would lock up
after enabling function tracer. I asked him to bisect the functions within
available_filter_functions, which he did and it came down to three:
_paravirt_nop(), _paravirt_ident_32() and _paravirt_ident_64()
It was found that this is only an issue when noreplace-paravirt is added to
the kernel command line.
This means
2005 Apr 28
2
Help with using the WINEDEBUG variable
Hi users.
I have found the WINEDEBUG variable to be very useful. However, now that my
program starts, using WINEDEBUG=trace,+all or WINEDEBUG=+all creats log
files well over 2.0 GB.
I am trying to find messages like the following:
0009:trace:seh:EXC_RtlRaiseException code=c0000005 flags=0 addr=0x4725f1
(and the few lines above it) to try and figure out what's causing my
Dreamweaver to
2019 Mar 04
2
Interpreter improvement
Hi,
I going through the Interpreter class source code and I think making almost
all the visit methods (maybe not visitInstruction yet) would really help
anybody that wants to create any sort of tracer or similar. Would be a
patch in this case worthy?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2015 Jan 29
2
Indexing Mail faster
On Thu, 2015-01-29 at 15:56 +0800, Kevin Laurie wrote:
> Hey Joseph
> Thanks. Strace seems like a very useful tool
> Only problem is that I dont think it is maintained on ubuntu.
> Tried to run:-
> apt-get install strace but could not download it.
> Might need to download and build it. Do you know any other way of getting
> it?
> Thanks
> Kevin A.
try apt-cache search
2009 Apr 13
2
Using trace
I would like to trace functions, displaying their arguments and return
value, but I haven't been able to figure out how to do this with the
'trace' function.
After some thrashing, I got as far as this:
fact <- function(x) if(x<1) 1 else x*fact(x-1)
tracefnc <- function() dput(as.list(parent.frame()), #
parent.frame() holds arg list
2009 Apr 13
2
Using trace
I would like to trace functions, displaying their arguments and return
value, but I haven't been able to figure out how to do this with the
'trace' function.
After some thrashing, I got as far as this:
fact <- function(x) if(x<1) 1 else x*fact(x-1)
tracefnc <- function() dput(as.list(parent.frame()), #
parent.frame() holds arg list
2005 Dec 14
2
RE: Form.serialize and Ajax.Request->fileserialization and encoding
I''d bet money that they use a hidden iframe. Gmail already uses that to
avoid breaking the back button, from what I''ve read. It''s impossible to
send multipart form data through XMLHttpRequest, or so everything I read
says and my own personal attempts confirm. There is an IE ActiveX
plugin that will let you send files in a similar fashion, but it''s IE
only. I
2011 Jun 09
3
Visual Fox Pro 9 with dBase tables
Hi everyone. I have a though one here.
In a friend's company they use n accounting and POS software which was designed by someone that passed away. The problem is that he doesn't have much money right now, thus can't license windows and MSoffice in his office.
I offered him the possibility of using Linux (Mint or Ubuntu) and having him run the software on Wine.
This is the software
2011 Feb 04
18
_INS5176._MP
Hi everyone.
I'm trying to install a program, each time I receive the error that _INS5176._MP has encountered a problem.
Is there a work around or fix ?
2019 Jun 28
2
methods package: A _R_CHECK_LENGTH_1_LOGIC2_=true error
> On 28 Jun 2019, at 16:03 , Martin Maechler <maechler at stat.math.ethz.ch> wrote:
>
>>>>>> Henrik Bengtsson
>>>>>> on Thu, 27 Jun 2019 16:00:39 -0700 writes:
>
>> Using:
>>
>> untrace(methods::conformMethod)
>> at <- c(12,4,3,2)
>> str(body(methods::conformMethod)[[at]])
>> ## language omittedSig