search for: __bzero

Displaying 6 results from an estimated 6 matches for "__bzero".

2010 Sep 09
0
[LLVMdev] Knowing all possible libcalls in advance and __bzero
Hi, Looks like LLVM inserts a call __bzero even if my code never does so: libclamav JIT: Attempt to call external function __bzero libclamav JIT: *** FATAL error encountered during bytecode generation It turns out this is because Codegen has this: const char *X86Subtarget::getBZeroEntry() const { // Darwin 10 has a __bzero entry point fo...
2000 Jan 06
1
Backups from NT?
Hello, I've got a Samba server set up as a member (not a domain controller) of an NT domain. I'm using Backup Exec on an NT server to back up all of my servers over the network, and want to include my Samba server in the backup scheme. I'm using the /home directory as the root for all of my samba shares (/home/users/clyde, /home/shared/dept.x, etc). In order to set up a backup
2000 Jan 03
3
compile problems
Hello all, This is my first time on the list. I just dl'ed thet latest samba, 2.0.6 and during my compile with linux 5.2 I get: smbd/files.o: in function `file_new`: smbd/files.o(.text+0xb8): undefined reference to `__bzero` .... Has anyone seen something like this before? any hints would be greatly appriciated. If I am on the wrong list please inform me where I can get the answeres to this problem. Thx George
2010 Aug 17
2
multcomp issues on MAC OSX 10.6.4
...54 (in CoreGraphics) [0x989df36a] 1 _CFRuntimeCreateInstance + 241 (in CoreFoundation) [0x9258b781] 1 __bzero + 73 (in commpage [libSystem.B.dylib]) [0xffff0649] 1 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 4580 (in AppKit) [0x952dbb10] 1 -[NSConcreteMapTab...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...attribute__ ((__nonnull__ (1))); extern char *strerror (int __errnum) __attribute__ ((__nothrow__)); extern int strerror_r (int __errnum, char *__buf, size_t __buflen) __asm__ ("" "__xpg_strerror_r") __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (2))); extern void __bzero (void *__s, size_t __n) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern void bcopy (__const void *__src, void *__dest, size_t __n) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1, 2))); extern void bzero (void *__s, size_t __n) __attribute__ ((__nothrow__))...