Displaying 20 results from an estimated 69 matches for "62,11".
Did you mean:
62,12
2019 Apr 02
6
[PATCH 0/5] Small inspection improvements
Few improvements to the results of the inspection on some distros.
Pino Toscano (5):
inspect: factorize list of rolling distros
inspect: detect Gentoo from os-release
inspect: fully detect Arch Linux from os-release
inspect: return osinfo short IDs for rolling distros
inspect: correct osinfo ID for ALT Linux >= 8
daemon/inspect_fs_unix.ml | 15 +++++++++------
2014 Sep 20
2
vsnprintf_s and vsnprintf
...t meet the requirements if the ISO C specs.
I'm basically think of something like the (untested) diff below.
Erik
diff --git a/src/share/grabbag/snprintf.c b/src/share/grabbag/snprintf.c
index 3a0661f..6a4e3ea 100644
--- a/src/share/grabbag/snprintf.c
+++ b/src/share/grabbag/snprintf.c
@@ -62,8 +62,11 @@ flac_snprintf(char *str, size_t size, const char *fmt, ...)
va_start (va, fmt);
#ifdef _MSC_VER
- rc = vsnprintf_s (str, size, _TRUNCATE, fmt, va);
- rc = (rc > 0) ? rc : (size == 0 ? 1024 : size * 2);
+ rc = vsnprintf (str, size, fmt, va);
+ if (rc...
2017 Aug 24
1
Invalid Signature of orc::RTDyldObjectLinkingLayer::NotifyLoadedFtor
...;getBinary());
}
OrcLazyJIT in lli on the other hand doesn't make use of the
notification.It can however be reproducedthere too:
diff --git a/tools/lli/OrcLazyJIT.h b/tools/lli/OrcLazyJIT.h
index 47a2acc4d7e..41a7c99413b 100644
--- a/tools/lli/OrcLazyJIT.h
+++ b/tools/lli/OrcLazyJIT.h
@@ -62,7 +62,11 @@ public:
bool InlineStubs)
: TM(std::move(TM)), DL(this->TM->createDataLayout()),
CCMgr(std::move(CCMgr)),
- ObjectLayer([]() { return
std::make_shared<SectionMemoryManager>(); }),
+ ObjectLayer([]() { return
std::make_shared<Sectio...
2013 Jun 23
0
[PATCH v2] nouveau: Load firmware for BSP/VP engines on NV84-NV96, NVA0
.../xtensa.h | 40 +++++
drivers/gpu/drm/nouveau/core/include/engine/bsp.h | 1 +
drivers/gpu/drm/nouveau/core/include/engine/vp.h | 1 +
drivers/gpu/drm/nouveau/core/subdev/mc/nv50.c | 1 +
drivers/gpu/drm/nouveau/core/subdev/vm/nv50.c | 2 +
13 files changed, 289 insertions(+), 62 deletions(-)
create mode 100644 drivers/gpu/drm/nouveau/core/core/xtensa.c
copy drivers/gpu/drm/nouveau/core/engine/bsp/{nv84.c => nv98.c} (87%)
copy drivers/gpu/drm/nouveau/core/engine/vp/{nv84.c => nv98.c} (88%)
create mode 100644 drivers/gpu/drm/nouveau/core/include/core/xtensa.h
diff...
2019 Apr 02
0
[PATCH 5/5] inspect: correct osinfo ID for ALT Linux >= 8
...fferent IDs in osinfo-db, so return the proper IDs
for the newest stable series.
---
lib/inspect-osinfo.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/lib/inspect-osinfo.c b/lib/inspect-osinfo.c
index 51612bad1..90b7ffd86 100644
--- a/lib/inspect-osinfo.c
+++ b/lib/inspect-osinfo.c
@@ -62,6 +62,11 @@ guestfs_impl_inspect_get_osinfo (guestfs_h *g, const char *root)
else if (STREQ (distro, "archlinux") || STREQ (distro, "gentoo")
|| STREQ (distro, "voidlinux"))
return safe_strdup (g, distro);
+ else if (STREQ (distro, "al...
2007 Apr 18
2
[PATCH 1/14] i386 / Make write ldt return error code
...sm-i386/mach-default/mach_desc.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/mach-default/mach_desc.h 2005-08-09 18:19:39.000000000 -0700
+++ linux-2.6.13/include/asm-i386/mach-default/mach_desc.h 2005-08-09 18:24:10.000000000 -0700
@@ -62,11 +62,12 @@
_set_tssldt_desc(&per_cpu(cpu_gdt_table, cpu)[GDT_ENTRY_LDT], (int)addr, ((size << 3)-1), 0x82);
}
-static inline void write_ldt_entry(void *ldt, int entry, __u32 entry_a, __u32 entry_b)
+static inline int write_ldt_entry(void *ldt, int entry, __u32 entry_a, __u32 entry_...
2007 Apr 18
2
[PATCH 1/14] i386 / Make write ldt return error code
...sm-i386/mach-default/mach_desc.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/mach-default/mach_desc.h 2005-08-09 18:19:39.000000000 -0700
+++ linux-2.6.13/include/asm-i386/mach-default/mach_desc.h 2005-08-09 18:24:10.000000000 -0700
@@ -62,11 +62,12 @@
_set_tssldt_desc(&per_cpu(cpu_gdt_table, cpu)[GDT_ENTRY_LDT], (int)addr, ((size << 3)-1), 0x82);
}
-static inline void write_ldt_entry(void *ldt, int entry, __u32 entry_a, __u32 entry_b)
+static inline int write_ldt_entry(void *ldt, int entry, __u32 entry_a, __u32 entry_...
2005 Feb 10
1
[PATCH] make DEBUG=true
udev knows about DEBUG=true and builds a debug binary. Maybe klibc
should do the same?
Was there a reason for -g in the i386 MCONFIG?
Index: MCONFIG
===================================================================
--- MCONFIG (revision 1003)
+++ MCONFIG (working copy)
@@ -62,5 +62,11 @@
#
include $(KLIBSRC)/arch/$(ARCH)/MCONFIG
+ifeq ($(DEBUG),true)
+STRIP = /bin/true -Since_we_are_debugging
+OPTFLAGS += -O1 -g
+endif
+
+
# How to tell the linker main() is the entrypoint
EMAIN ?= -e main
Index: klibc/arch/i386/MCONFIG
=============================================...
2007 Aug 22
0
3 commits - libswfdec/swfdec_sprite_movie.c player/swfplay.c
...rite_movie.c | 33 +++++++++++++++++++++++++++++++--
player/swfplay.c | 6 +++++-
2 files changed, 36 insertions(+), 3 deletions(-)
New commits:
diff-tree 361082fdf6ede11a08266193ca00247490121f6e (from parents)
Merge: 906a2ce832b317cdb0d5cd6fefe01fe17a676cd0 adebed995585fa9f993062a75df17ff464113e93
Author: Benjamin Otte <otte at gnome.org>
Date: Wed Aug 22 14:19:14 2007 +0200
Merge branch 'master' of ssh://company at git.freedesktop.org/git/swfdec/swfdec
diff-tree 906a2ce832b317cdb0d5cd6fefe01fe17a676cd0 (from b822fe6102c568328608dcce05a412c848005f88)
A...
2007 Aug 24
0
2 commits - player/swfplay.c
...k
diff --git a/player/swfplay.c b/player/swfplay.c
index 7521acf..0c2ff6b 100644
--- a/player/swfplay.c
+++ b/player/swfplay.c
@@ -31,6 +31,8 @@
#include "swfdec_slow_loader.h"
+static GMainLoop *loop = NULL;
+
static void
set_title (GtkWindow *window, const char *filename)
{
@@ -62,11 +64,8 @@ static void
do_fscommand (SwfdecPlayer *player, const char *command, const char *value, gpointer window)
{
if (g_str_equal (command, "quit")) {
- static gboolean already_quit = FALSE;
- if (!already_quit) {
- gtk_main_quit ();
- already_quit = TRUE;
- }...
2007 Sep 10
2
[LLVMdev] profiling with llvm-gcc4?
How can I do function profiling and BB profiling with current llvm and
llvm-gcc4?
runtime/libprofile is disabled when using llvm-gcc4, but... is there any
alternative to linking with libprofile_rt.so?
How can I use llvm-prof? is utils/profile.pl obsolete?
Thanks in advance,
josem
2007 Sep 10
0
[LLVMdev] profiling with llvm-gcc4?
On Mon, 10 Sep 2007, Jose M. Moya wrote:
> How can I do function profiling and BB profiling with current llvm and
> llvm-gcc4?
>
> runtime/libprofile is disabled when using llvm-gcc4, but... is there any
> alternative to linking with libprofile_rt.so?
>
> How can I use llvm-prof? is utils/profile.pl obsolete?
The profiling support in LLVM hasn't been used for quite a
2007 Sep 11
1
[LLVMdev] profiling with llvm-gcc4?
...eyond"
+PARALLEL_DIRS := libprofile
else
ifneq ($(wildcard $(LLVMGCC)),)
PARALLEL_DIRS := libdummy libprofile GC
Index: utils/profile.pl
===================================================================
--- utils/profile.pl (revision 41794)
+++ utils/profile.pl (working copy)
@@ -62,11 +62,10 @@
shift @ARGV;
-my $LLIPath = `which lli`;
-$LLIPath = `dirname $LLIPath`;
-chomp $LLIPath;
+my $libdir = `llvm-config --libdir`;
+chomp $libdir;
-my $LibProfPath = $LLIPath . "/../../Debug/lib/profile_rt.so";
+my $LibProfPath = $libdir . "/profile_rt.so";
s...
2009 Aug 31
0
xy.coords assumes lists will have x and y components, but doesn't check (PR#13936)
...er
called:
> plot(x)
Error in xy.coords(x, y, xlabel, ylabel, log) :
cannot find components 'x' and 'y'
Index: xyz.coords.R
===================================================================
--- xyz.coords.R (revision 49504)
+++ xyz.coords.R (working copy)
@@ -62,11 +62,15 @@
}
}
else if(is.list(x)) {
- xlab <- paste(ylab, "$x", sep="")
- ylab <- paste(ylab, "$y", sep="")
- y <- x[["y"]]
- x <- x[["x"]]
- }
+...
2014 Sep 20
0
vsnprintf_s and vsnprintf
...a check on the the return value and a line or two of extra
> code, this function can made to behave resonably sensibly, even it
> its not possible to make it meet the requirements if the ISO C specs.
>
> I'm basically think of something like the (untested) diff below.
>
> @@ -62,8 +62,11 @@ flac_snprintf(char *str, size_t size, const char *fmt, ...)
> va_start (va, fmt);
> #ifdef _MSC_VER
> - rc = vsnprintf_s (str, size, _TRUNCATE, fmt, va);
> - rc = (rc > 0) ? rc : (size == 0 ? 1024 : size * 2);
> + rc = vsnprintf (str, size, fm...
2020 Mar 28
0
[klibc:update-dash] dash: expand: Do not reprocess data when expanding words
...o out;
+
INTOFF;
startloc = expdest - (char *)stackblock();
pushstackmark(&smark, startloc);
@@ -556,6 +535,9 @@ read:
(dest - (char *)stackblock()) - startloc,
(dest - (char *)stackblock()) - startloc,
stackblock() + startloc));
+
+out:
+ argbackq = argbackq->next;
}
@@ -626,33 +608,35 @@ scanright(
return 0;
}
-STATIC const char *
-subevalvar(char *p, char *str, int strloc, int subtype, int startloc, int varflags, int flag)
+static char *subevalvar(char *start, char *str, int strloc, int startloc,
+ int varflags, int flag)
{
+ int subtype = varflags & VST...
2007 Jun 09
0
Branch 'as' - libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie_as.c
...t_free, content);
+ content->free = TRUE;
if (swfdec_as_context_use_mem (SWFDEC_AS_CONTEXT (player), sizeof (SwfdecSpriteMovie))) {
g_object_ref (ret);
swfdec_as_object_add (SWFDEC_AS_OBJECT (ret),
diff --git a/libswfdec/swfdec_movie.h b/libswfdec/swfdec_movie.h
index 5053fc2..9c3aa62 100644
--- a/libswfdec/swfdec_movie.h
+++ b/libswfdec/swfdec_movie.h
@@ -62,9 +62,11 @@ struct _SwfdecContent {
/* NB: the next two elements are only filled for the sequence leader */
guint start; /* first frame that contains this sequence */
guint end; /* first frame that does not c...
2019 Sep 17
0
[PATCH libnbd 5/5] interop: Add tests of nbdkit + LIBNBD_TLS_ALLOW.
...| 3 ---
interop/Makefile.am | 54 +++++++++++++++++++++++++++++++++++++++++++++
interop/interop.c | 30 ++++++++++++++++++++-----
4 files changed, 82 insertions(+), 9 deletions(-)
diff --git a/.gitignore b/.gitignore
index ab47370..dd8a052 100644
--- a/.gitignore
+++ b/.gitignore
@@ -62,7 +62,11 @@ Makefile.in
/interop/dirty-bitmap
/interop/interop-nbdkit
/interop/interop-nbdkit-tls-certs
+/interop/interop-nbdkit-tls-certs-allow-enabled
+/interop/interop-nbdkit-tls-certs-allow-fallback
/interop/interop-nbdkit-tls-psk
+/interop/interop-nbdkit-tls-psk-allow-enabled
+/interop/int...
2017 Mar 24
1
[PATCH] bash: Implement tab completion for virt-win-reg (RHBZ#1367738).
...le.am
index 86fd816..983e8da 100644
--- a/bash/Makefile.am
+++ b/bash/Makefile.am
@@ -51,7 +51,8 @@ symlinks = \
virt-sysprep \
virt-tail \
virt-tar-in \
- virt-tar-out
+ virt-tar-out \
+ virt-win-reg
# Note: Don't distribute the symbolic links, only the real files.
EXTRA_DIST = \
@@ -62,11 +63,17 @@ EXTRA_DIST = \
CLEANFILES += \
$(symlinks)
-# Any tool that has --short-options and --long-options is handled by
-# this common script. However this script cannot deal with commands
-# that use --ro/--rw (eg. virt-rescue), nor commands that have lots of
-# exceptions (eg. guestfi...
2014 Sep 18
3
patch for win_utf8_io.c: vsnprintf_s vs. MinGW
lvqcl wrote:
> Oops. It seems that vsnprintf_s isn't always available on MinGW platform:
> MinGW declares this function only if MINGW_HAS_SECURE_API macro is defined.
> That's because WinXP version of msvcrt.dll doesn't contain secure functions
> like vsnprintf_s.
>
> Maybe it's better to revert vsnprintf_s to vsprintf or to use vnsprintf?
Ok, we need to drop