search for: padraig

Displaying 20 results from an estimated 25 matches for "padraig".

2008 Aug 25
5
Debugging Xen domain with mdb
...i, I was just wondering if it is possible to debug a live Xen domain with mdb i.e. use mdb on a running domain? I know that it is possible to debug a domain with mdb using a crash dump. I couldn''t find anything about using mdb on a live domain though so I thought I''d ask here. -Padraig This message posted from opensolaris.org
2005 Oct 06
4
dapptrace and firefox
/usr/sfw/bin/firefox is a shell script which calls run-mozilla.sh which calls firebox-bin. Is there a way to call dapptrace on firefox in order to trace firefox-bin? This message posted from opensolaris.org
2008 Jun 18
4
[LLVMdev] Errors building llvm
Hi, I am trying to build LLVM on x86 Windows platform with Cygwin and get an error building lib/Support/APInt.cpp. I get the same errors using gcc 3.4.2 and 3.4.4. The log is attached. Please advice. Thanks. Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080617/03b85700/attachment.html>
2008 Jun 18
0
[LLVMdev] Errors building llvm
...change int32_t and unit32_t from long's to int's. So the following changes were performed: typedef long int32_t becomes typedef int int32_t typedef unsigned long uint32_t becomes typedef unsigned int uint32_t That fixed the error for me and LLVM compiled without issues after the change. Padraig > Jay > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > >
2007 Mar 26
0
New OpenSolaris Project: Mozilla DTrace
...ozilla head and are not yet integrated, all the probes are marked as unstable and may break if the underlying mozilla code changes. We''ll do our best to keep them up to date and working, but they are very much for experimentation at the minute :) JR John Rice Brendan Gregg Alfred Peng Padraig O''Briain
2011 Jun 30
0
ANNOUNCE: oz 0.5.0 release
...input from the user. Release 0.5.0 is a bugfix and feature release for Oz. Some of the highlights between Oz 0.4.0 and 0.5.0 are: - Replace icicle-nc binary with a shell script to try various methods. Besides being more portable, this also allows us to convert Oz to a noarch RPM (thanks to Padraig Brady) - Support for Ubuntu 6.06 - Support for md5sum/sha1sum/sha256sum checking of ISOs after download - New -x flag for oz-install to write the libvirt XML file to a user-specified location (thanks to Steve Dake) - Support for OpenSUSE customization - Support for F-15 customization (thanks to Ste...
2008 Jun 18
0
[LLVMdev] Errors building llvm
Hi, Chris > Can you please send in a patch so we can fix this on mainline? This known problem: stdint.h on cygwin declares {u}int32_t type to be 'long', not 'int'. And this causes problems with APInt's uint32_t => unsigned casts. I myself don't know good direct fix except patching Cygwin's stdint.h itself. -- With best regards, Anton Korobeynikov. Faculty of
2013 Jul 29
2
ANNOUNCE: Oz 0.11.0 release
All, I'm pleased to announce release 0.11.0 of Oz. Oz is a program for doing automated installation of guest operating systems with limited input from the user. Release 0.11.0 is a bugfix and feature release for Oz. Some of the highlights between Oz 0.10.0 and 0.11.0 are: * Add support for installing Ubuntu 13.04 * Add the ability to get user-specific ICICLE information * Add the
2012 Jul 04
1
NOTICE: Data corruption bug when writing to qcow2 files
...stfs which contain fixes will be announced separately. It is likely that these versions will *require* qemu >= 1.1.0, so effectively our baseline version of qemu has just increased from 1.0 to 1.1.0, and this change is noted in the README file. (Thanks to Kevin Wolf, Paolo Bonzini, Avi Kivity, Padraig Brady for invaluable help.) Rich. [1] https://www.redhat.com/archives/libguestfs/2012-July/msg00005.html [2] https://www.redhat.com/archives/libguestfs/2012-July/msg00008.html [3] https://github.com/libguestfs/libguestfs/blob/cb24ceedd8a8ef7da71cfcce6db10669de47685c/resize/test-virt-resize.sh [4]...
2015 Oct 05
2
[PATCH] Remove multiple hacks that only apply to RHEL 5.
...E m_guestfs; /* guestfs module */ static VALUE c_guestfs; /* guestfs_h handle */ static VALUE e_Error; /* used for all errors */ diff --git a/run.in b/run.in index 42f8cc8..46dbaf0 100755 --- a/run.in +++ b/run.in @@ -238,14 +238,11 @@ fi timeout_period=4h timeout_kill=30s -# Do we have Padraig's timeout utility (from coreutils)? -if timeout --help >/dev/null 2>&1; then - # Must use the --foreground option (RHBZ#1025269). - if timeout --foreground 2 sleep 0 >/dev/null 2>&1; then - # Does this version of timeout have the -k option? (Not on RHEL 6) -...
2014 Sep 20
3
[PATCH v2 0/3] tests: Introduce test harness for running tests.
This has got to the stage where it actually works, both for running the tests in-tree and installed. The 'test-harness' script has become rather over-complex in the process however. Rich.
2014 Oct 03
0
[PATCH v3] tests: Introduce test harness for running tests.
...estfs-tests/phony-guests" + ) in + + (* If the user gave the valgrind option, check it is valid. *) + if valgrind then ( + if Sys.command "valgrind --help >/dev/null 2>&1" <> 0 then + failwith "valgrind is not installed" + ); + + (* Do we have Padraig's timeout utility? It must have the + * --foreground option (RHBZ#1025269) and the -k option (not present + * in RHEL 6). + *) + let timeout = + Sys.command "timeout --help >/dev/null 2>&1" = 0 && + Sys.command "timeout --foreground 2 sleep 0 >/...
2014 Oct 05
0
[PATCH v5 1/7] tests: Introduce test harness for running tests.
...hen ( + if Sys.command "valgrind --help >/dev/null 2>&1" <> 0 then + failwith "valgrind is not installed" + ); + + (* Do we have libtool? *) + let have_libtool = Sys.command "libtool --help >/dev/null 2>&1" = 0 in + + (* Do we have Padraig's timeout utility? It must have the + * --foreground option (RHBZ#1025269) and the -k option (not present + * in RHEL 6). + *) + let timeout = + Sys.command "timeout --help >/dev/null 2>&1" = 0 && + Sys.command "timeout --foreground 2 sleep 0 >/...
2015 Aug 06
0
[PATCH v4 01/17] tests: Introduce test harness for running tests.
...hen ( + if Sys.command "valgrind --help >/dev/null 2>&1" <> 0 then + failwith "valgrind is not installed" + ); + + (* Do we have libtool? *) + let have_libtool = Sys.command "libtool --help >/dev/null 2>&1" = 0 in + + (* Do we have Padraig's timeout utility? It must have the + * --foreground option (RHBZ#1025269) and the -k option (not present + * in RHEL 6). + *) + let timeout = + Sys.command "timeout --help >/dev/null 2>&1" = 0 && + Sys.command "timeout --foreground 2 sleep 0 >/...
2013 Aug 24
46
[PATCH 00/46] Proposed patches for libguestfs 1.20.11.
Tested with 'make check-release'. tests/parallel (in check-slow) failed, although it does regularly and that seems to be because of libvirt. Rich.
2014 Sep 16
5
[PATCH 0/3] tests: Introduce test harness for running tests.
These are my thoughts on adding a test harness to run tests instead of using automake. The aim of this exercise is to allow us to run the full test suite on an installed copy of libguestfs. Another aim is to allow us to work around all the limitations and problems of automake. The first patch makes an observation that since the ./run script sets up $PATH to contain all the directories
2013 Aug 24
67
[PATCH 00/67] Proposed patches for libguestfs 1.22.6.
In the kernel and qemu communities it is routine for patches that will be backported to stable branches to be posted for review. I'm proposing we do the same for libguestfs stable branches. All of the attached have been tested with 'make check-release'. Rich.
2014 Oct 04
4
[PATCH v4 0/4] tests: Introduce test harness for running tests.
This converts more of the tests (basically everything under tests/) to use the test harness, revealing some problems which have subsequently been fixed. Rich.
2014 Oct 05
12
[PATCH v5 0/7] tests: Introduce test harness for running tests.
Since v4: - More tests have been converted. - Testing local guests fixed. - Drop no-exec-stack test.
2014 Oct 23
10
[PATCH v6 00/10] tests: Introduce test harness for running tests.
For v6: This is mainly just a rebase, but I have also added tests in the ocaml/ language bindings directory, and for all the OCaml-written virt tools. Rich.