search for: gmon

Displaying 20 results from an estimated 20 matches for "gmon".

Did you mean: gmfn
2008 Oct 31
2
[LLVMdev] building for sparc-sun-solaris2.10
.../../src/llvm-gcc-svn/gcc/../libcpp/include -I/opt/local/include -I/opt/local/include -I../../../../src/llvm-gcc-svn/gcc/../libdecnumber -I../libdecnumber -I/Users/luked/install/obj/llvm-svn/include -I/Users/luked/install/src/llvm-svn/include \ -c ../../../../src/llvm-gcc-svn/gcc/config/sparc/gmon-sol2.c -o gmon.o /Users/luked/install/obj/sparc/llvm-gcc/./gcc/xgcc -B/Users/luked/install/obj/sparc/llvm-gcc/./gcc/ -B/Users/luked/opt/sparc/sparc-sun-solaris2.10/bin/ -B/Users/luked/opt/sparc/sparc-sun-solaris2.10/lib/ -isystem /Users/luked/opt/sparc/sparc-sun-solaris2.10/include -isystem /U...
2012 Jul 10
9
[PATCH] stubdom: fix errors in newlib
...s after rpm build. Add another newlib patch and apply it during stubdom build. I: A function uses a ''return;'' statement, but has actually a value to return, like an integer (''return 42;'') or similar. W: xen voidreturn ../../../../newlib-1.16.0/libgloss/i386/cygmon-gmon.c:117, 125, 146, 157, 330 I: Program is using implicit definitions of special functions. these functions need to use their correct prototypes to allow the lightweight buffer overflow checking to work. - Implicit memory/string functions need #include <string.h>. - Implici...
2009 Mar 13
1
[LLVMdev] llvm-gcc4.2-2.5 front-end build problems on SunOS
...llvm-gcc4.2-2.5.source/gcc/../include -I../../llvm-gcc4.2-2.5.source/gcc/../libcpp/include -I../../llvm-gcc4.2-2.5.source/gcc/../libdecnumber -I../libdecnumber -I/home/g-adrli/llvm/llvm-2.5/obj/include -I/home/g-adrli/llvm/llvm-2.5/include \ -c ../../llvm-gcc4.2-2.5.source/gcc/config/sparc/gmon-sol2.c -o gmon.o In file included from ./tm.h:5, from ../../llvm-gcc4.2-2.5.source/gcc/config/sparc/gmon-sol2.c:39: ./options.h:463: error: 'HOST_BITS_PER_INT' undeclared here (not in a function) ./options.h:463: error: bit-field 'padding' width not an integer const...
2004 Jun 07
2
(low level) profiling of code
...ine Additional capabilities: PNG, JPEG Options enabled: R profiling Recommended packages: no I then tried running /path/to/R-patched/bin/R CMD BATCH -q -slave myscript.R where inside myscript.R is call to R functions that calls .C(). However, this does not produce the gmon.out file. Can anyone tell me what I'm missing? Any help much appreciated! Best, Andy Andy Liaw, PhD Biometrics Research PO Box 2000, RY33-300 Merck Research Labs Rahway, NJ 07065 andy_liaw (at) merck.com 732-594-0820
2005 Feb 26
1
Profiling C functions called from R.
...tines (built with GCC under Debian Linux). I tried running R with LD_PROFILE=/path/to/C/library.so R and executing functions that would invoke the code therein. The code takes about twice as long to run with LD_PROFILE set than without, so I am guessing that profiling is taking place. However, gmon.out is not generated (or at least I can't find it anywhere on the filesystem). Has anyone been able to profile shared libraries built for R in Linux? Thank you in advance, Pavel Krivitsky
2005 Jul 27
1
[LLVMdev] Help regarding profiling information
Hi, I am trying to obtain basic block profiles for mediabench g721 benchmark. I have successfully built llvm in profile_enabling mode. Then so as to find out the block execution frequency, I ran the command, analyze encode.out-cbe. It generated gmon.out which I read using gprof. However, I did not get the basic block level execution frequency. Can anybody help me as to how I can extract the basic block execution frequency using llvm? Thanks Murali
2020 Aug 07
3
Rsync 3.2.3 released
I have released rsync 3.2.3. It contains a smattering of bug fixes and various enhancements. To see a summary of all the recent changes, visit this link: https://rsync.samba.org/ftp/rsync/NEWS#3.2.3 You can download the source tar file and its signature from here: https://rsync.samba.org/ftp/rsync/rsync-3.2.3.tar.gz https://rsync.samba.org/ftp/rsync/rsync-3.2.3.tar.gz.asc See the
2020 Aug 07
3
Rsync 3.2.3 released
I have released rsync 3.2.3. It contains a smattering of bug fixes and various enhancements. To see a summary of all the recent changes, visit this link: https://rsync.samba.org/ftp/rsync/NEWS#3.2.3 You can download the source tar file and its signature from here: https://rsync.samba.org/ftp/rsync/rsync-3.2.3.tar.gz https://rsync.samba.org/ftp/rsync/rsync-3.2.3.tar.gz.asc See the
2006 Jun 08
1
[LLVMdev] Profiling dynamically loaded libraries
Hi, Standard approach to profiling dynamically loaded libraries with gprof doesn't seem to work with LLVM: export LD_PROFILE=Mylib.so export LD_PROFILE_OUTPUT=. make ENABLE_PROFILING=1 // compiling my project opt -load Profile/Mylib.so -options... but no Mylib.so.profile (or gmon.out) is produced. Profiling libc.so.6 usage by "ls -l", however, works fine. Could anyone explain me what am I doing wrong? Thx. Domagoj Other possibly relevant info: Makefile contains: LIBRARYNAME=Mylib SHARED_LIBRARY=1 LOADABLE_MODULE=1 Platform: Suse Linux gprof 2.15.94.0.2....
2009 Jun 26
3
beginner's guide to C++ programming with R packages?
...rof? In the Writing R Extensions manual, it describes "oprofile" and "sprof" for Linux. I will try them, but they are unfamilar to me. I've used gprof in the past in C projects, and it is a pretty painless thing to add a compiler flag -pg, run the program, and then review gmon.out. The Writing R Extensions manual does not mention gprof in its section on Linux, but it does mention it under Solaris. There is a somewhat ambiguous statement: 3.4.2 Solaris On 64-bit (only) Solaris, the standard profiling tool gprof collects information from shared libraries compiled with...
2008 Nov 01
0
[LLVMdev] building for sparc-sun-solaris2.10
...; > which appears to be llvm-gcc specific because it doesn't happen in > vanilla 4.2.4. > > I'm definitely moving forward though. Thanks for the advice. Anton helped me out on irc. For anyone that needs it, the solution was to add #define IN_LIBGCC2 in the beginning of sol2-gmon.c file before its includes. Now I get to an ICE /Users/luked/install/obj/sparc/llvm-gcc/./gcc/xgcc -B/Users/luked/install/obj/sparc/llvm-gcc/./gcc/ -B/Users/luked/opt/sparc/sparc-sun-solaris2.10/bin/ -B/Users/luked/opt/sparc/sparc-sun-solaris2.10/lib/ -isystem /Users/luked/opt/sparc/sparc-su...
2008 Oct 31
2
[LLVMdev] building for sparc-sun-solaris2.10
Mike Stump wrote: > On Oct 31, 2008, at 1:10 PM, Luke Dalessandro wrote: >> I've started trying by trying to get sparc-sun-solaris2.10 (niagara) >> working. It appears that neither llvm nor llvm-gcc will build natively >> on the system, so I think that I need to build an llvm-gcc cross >> compiler. > > Get a gcc binary from someplace, use that to then build
2020 Aug 07
0
Rsync 3.2.3 released
Rsync 3.2.2 ransfer rate on my pet hardware is really poor, so every improvement counts. I noted that rsync writes a gmon file on the source path and leaves it there when it terminates. When the source path is read-only, rsync complains that it cannot write in it. For optimal use of the input bus, no write commands should be used there. Can you look into it? Also, I have 12GB of cache in ecc ram that rsync is not usi...
2020 Aug 07
2
Rsync 3.2.3 released
On Thu, Aug 6, 2020 at 10:46 PM Rupert Gallagher wrote: > I noted that rsync writes a gmon file on the source path and leaves it > there when it terminates. Nope, it doesn't. You'll need to figure out what's going on with your setup. Also, I have 12GB of cache in ecc ram that rsync is not using. > It uses whatever memory it needs plus whatever filesystem caching yo...
2005 Jul 27
0
[LLVMdev] Regarding profiling with llvm
...it says I would get a profile.out file. However, I dont see the file. However, I see several files like encode.out-cbe, encode.out-jit etc. I assumed that encode.out.cbe would provide me with common block execution profile information and gave the command analyze encode.out-cbe. This generated a gmon.out file which I read with gprof. Howveer, i dont get any information about the block frequencies and other information. Is there something I am doing wrong? Any help shall be greatly appreciated. Thanks Murali
2002 May 05
1
a problem I'm having with rsync-4.5.4
...please? Is this a George problem or an rsync problem? Maybe I'm not reading the output correctly? Where it says ...file is newer, does that mean that rsync will update the file or not? Regards and thanks for the help, George... exclude file: # # filex to be EXCLUDED FROM copying... # *gmon.out local/bin/oraclebackup* local/bin/perl */nsr* lsd gls/cm/registry gls/lc/os/portable/C include/sys/mtio.h the log file (part of it): . . . excluding directory lib/nsr because of pattern */nsr* . . . excluding file sbin/nsr_shutdown because of pattern */nsr* excluding file sbin/nsr_supp...
2020 Aug 07
1
Rsync 3.2.3 released
...d differently on the code and are no longer needed? Thanks for any info on this. Regards, Michal Ruprich On 8/7/20 7:45 AM, Rupert Gallagher via rsync wrote: > Rsync 3.2.2 ransfer rate on my pet hardware is really poor, so every > improvement counts. > > I noted that rsync writes a gmon file on the source path and leaves it > there when it terminates. When the source path is read-only, rsync > complains that it cannot write in it. For optimal use of the input > bus, no write commands should be used there. Can you look into it? > > Also, I have 12GB of cache in ecc r...
2016 Jan 04
2
OPenssl and dependencies such as openssh
...; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not fo und" >&5 $as_echo "not found" >&6; } as_fn_error $? "OpenSSL library not found." "$LINENO" 5 fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi Could there be anything that is causing openssh not to see the new openssl 1.1 and are any other dependent serverware affacted? -- Member -...
2010 Oct 15
0
Network Browsing
...es writeable = yes create mask = 2774 directory mask = 2774 delete veto files = Yes veto files = /lost+found/Network Trash Folder/TheFindByContentFolder/TheVolumeSettingsFolder/._.DS_Store/ hide files = /_*/:*/.*/.AppleDB/.AppleDouble/.bin/.AppleDesktop/Temporary Items/.DS_Store/*.gmon The scanned documents go to the "shared" share. I use the "<nt domain name>-admin" username to authenticate the transfer of the scanned documents from the copier into the "shared" share. When switching from the Windows server to the Samba server, I get an error...
2013 Jul 21
9
build for pv-grub stubdom
...:3: warning: implicit declaration of function ‘_open64’ [-Wimplicit-function-declaration] * ../../../../../newlib-1.16.0/newlib/libc/reent/lseek64r.c:61:3: warning: implicit declaration of function ‘lseek64’ [-Wimplicit-function-declaration] * ../../../../newlib-1.16.0/libgloss/i386/cygmon-gmon.c:355:7: warning: implicit declaration of function ‘profil’ [-Wimplicit-function-declaration] * ../grub-upstream/stage2/builtins.c:1728:3: warning: implicit declaration of function ‘do_exit’ [-Wimplicit-function-declaration] * /mnt/gen2/TmpDir/portage/app-emulation/xen-pvgrub-4.3.0/...