Displaying 20 results from an estimated 109 matches for "bcopy".
Did you mean:
copy
2003 Jul 13
1
sys/dev/ie/if_ie.c warnigns in yesterdays CVSup
...rnel from yesterdays 4_RELENG CVSup, I got a lot of
complilation warnings (it seems if_ie.c hasn't been updated in 3 months,
so changes have happened elsewhere, it seems.)
HTH,
/usr/src/sys/dev/ie/if_ie.c: In function `ieget':
/usr/src/sys/dev/ie/if_ie.c:1178: warning: passing arg 1 of `bcopy' discards qualifiers from pointer target type
/usr/src/sys/dev/ie/if_ie.c:1267: warning: passing arg 1 of `bcopy' discards qualifiers from pointer target type
/usr/src/sys/dev/ie/if_ie.c:1267: warning: passing arg 2 of `bcopy' discards qualifiers from pointer target type
/usr/src/sys/de...
2003 Mar 31
2
basename() in libgen
IRIX 6.5 has the basename() function in libgen.
SYNOPSIS
cc [flag ...] file ... -lgen [library ...]
#include <libgen.h>
char *basename (char *path);
-- ayamura
2001 Jun 07
0
Patch for systems with no setreuid()
...ne if you have the setresuid function. */
+#undef HAVE_SETRESUID
+
/* Define if you have the setrlimit function. */
#undef HAVE_SETRLIMIT
--- configure.orig Thu Jun 7 14:12:53 2001
+++ configure Thu Jun 7 14:13:40 2001
@@ -3184,7 +3184,7 @@
fi
-for ac_func in arc4random atexit b64_ntop bcopy bindresvport_sa clock fchown fchmod freeaddrinfo futimes gai_strerror getcwd getaddrinfo getgrouplist getnameinfo getrlimit getrusage getttyent getusershell glob inet_aton inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove mkdtemp on_exit openpty realpath rresvport_af setdtablesize sete...
2008 Feb 26
11
Is there way to trace memory in the dtrace ?
N_conreq:entry {
self->x=1;
calledaddr=(struct xaddrf *)arg3;
callingaddr=(struct xaddrf *)arg4;
trace(calledaddr->link_id);
tracemem(calledaddr->DTE_MAC.lsap_add, 80);
trace(callingaddr->link_id);
tracemem(callingaddr->DTE_MAC.lsap_add, 80);
}
0 -> N_conreq 255
2000 Feb 14
0
[openssh-1.2.2] some porting notes for SunOS 4.1.4
...7.5
egd 0.6 (doesn't really come into play at compile time)
The following only pertains to the compilation (and linking) stage.
Code and patches are SunOS specific.
-- The following functions are missing in SunOS: strerror, atexit,
memmove. I wrote simple replacements in term of on_exit and bcopy and
linked them without problem when necessary. (See code at end of
mail.)
-- The mail directory could not be deduced from any header file. In
addition, the MAIL environment variable was also not defined when
running configure. As a consequence, MAIL_DIRECTORY was just
#undef'ined in config...
2000 May 20
3
Portable OpenSSH-2.1.0p2
This is to announce the availability of portable OpenSSH-2.1.0p2. This
is a bug-fix release, addressing the following issues:
- X authentication works again (thanks to Markus Friedl)
- Don't touch utmp if utmpx is in use
- Fix SIGCHLD problems on AIX and HPUX (Thanks to Tom Bertelson)
- HPUX compile fixes (Thanks to Lutz Jaenicke)
- Accept an empty shell in /etc/passwd
- SunOS4 compile fixes.
2000 May 20
3
Portable OpenSSH-2.1.0p2
This is to announce the availability of portable OpenSSH-2.1.0p2. This
is a bug-fix release, addressing the following issues:
- X authentication works again (thanks to Markus Friedl)
- Don't touch utmp if utmpx is in use
- Fix SIGCHLD problems on AIX and HPUX (Thanks to Tom Bertelson)
- HPUX compile fixes (Thanks to Lutz Jaenicke)
- Accept an empty shell in /etc/passwd
- SunOS4 compile fixes.
2001 May 22
1
[PATCH]: configure.in: Missing check for setvbuf
...vs/openssh_cvs/configure.in,v
retrieving revision 1.286
diff -u -p -r1.286 configure.in
--- configure.in 2001/05/17 03:32:51 1.286
+++ configure.in 2001/05/22 11:59:54
@@ -460,7 +460,7 @@ AC_ARG_WITH(tcp-wrappers,
)
dnl Checks for library functions.
-AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_sa clock fchown fchmod freeaddrinfo futimes gai_strerror getcwd getaddrinfo getgrouplist getnameinfo getrlimit getrusage getttyent getusershell glob inet_aton inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove mkdtemp on_exit openpty realpath rresvport_af setdtablesize sete...
2003 Jan 13
0
SX-6 port of openssh, configure problems
...in base64.c and in libc.a. So we modified configure to
check both the functions b64_pton() and b64_ntop(). But we gave priority to
native function if available. Following are the diffs of three files we
changed
1. configure (line modified)
5949c5949
< for ac_func in arc4random atexit b64_ntop bcopy bindresvport_sa \
---
> for ac_func in arc4random atexit b64_ntop b64_pton bcopy bindresvport_sa \
2. config.h.in (Following lines added)
337a337,339
>
> /* Define if you have the `b64_pton' function. */
> #undef HAVE_B64_PTON
3. openbsd-compat/base64.c (Used the HAVE_B64_PTON...
2001 Jan 22
0
Patches for failing build & bus error on SPARC/Linux
...EAI_MEMORY;
! strcpy(host, inet_ntoa(sin->sin_addr));
return 0;
} else {
hp = gethostbyaddr((char *)&sin->sin_addr,
--- 30,43 ----
if (host) {
if (flags & NI_NUMERICHOST) {
! /* inet_ntoa wants aligned data on SPARC */
! struct in_addr align;
! bcopy((char *)&sin->sin_addr,
! (char *)&align, sizeof(struct in_addr));
! if (strlen(inet_ntoa(align)) >= hostlen)
return EAI_MEMORY;
! strcpy(host,inet_ntoa(align));
return 0;
} else {
hp = gethostbyaddr((char *)&sin->sin_addr,
*** /dev/null T...
2005 May 05
1
FreeBSD Security Advisory FreeBSD-SA-05:08.kmem
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
=============================================================================
FreeBSD-SA-05:08.kmem Security Advisory
The FreeBSD Project
Topic: Local kernel memory disclosure
Category: core
Module: sys
Announced: 2005-05-06
2014 Oct 28
3
[Bug 2301] New: test_sshbuf_misc.c:44 ASSERT_INT_NE(feof(out), 0) failed
...a segfault:
test_sshbuf:
.....................................................................................Process
83095 (test_sshbuf) stopped on signal SIGSEGV: Segmentation violation
(default) at [memcpy:357 ,0xfa433ec]
Source (of
/xlv41/6.5.30m/work/irix/lib/libc/libc_n32_M4/strings/bcopy.s) not
available for Process 83095
(dbx) where
> 0 memcpy(0x10021b68, 0x0, 0x1, 0xfa474e8, 0x110f9c, 0x0, 0x2, 0x7ffb7cd8) ["/xlv41/6.5.30m/work/irix/lib/libc/libc_n32_M4/strings/bcopy.s":357, 0xfa433ec]
1 _doprnt(0x0, 0x8040, 0xfb4f7f8, 0x0, 0x0, 0x0, 0x0, 0x0)
["/xlv41/6.5.3...
2012 Oct 13
0
[ANNOUNCE] xscope 1.3.99.901
...Use local variable for ioctl argument instead of a static
Combine usage message into single string for fprintf
Define *HEADER constants as string pointers, not arrays
Move debug statement before panic() call, so it can actually run
SaveBytes: drop unnecessary casts in bcopy() call
Convert remaining sprintf calls to snprintf
Add _X_NORETURN to additional functions suggested by gcc warnings
Convert remaining bcopy() calls to memcpy()
Convert ILong, IShort, etal to return C99 uint*_t types
Move ILong, IShort, etal to inline functions in x11....
2001 Sep 29
0
configure.in fixes for 2.9.9p2
...AC_CHECK_LIB(util, login, AC_DEFINE(HAVE_LIBUTIL_LOGIN) LIBS="$LIBS -lutil")
# We don't want to check if we did an pcre override.
if test -z "$no_comp_check" ; then
@@ -481,7 +494,14 @@
)
dnl Checks for library functions.
-AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_sa clock dirname fchown fchmod freeaddrinfo futimes gai_strerror getcwd getaddrinfo getgrouplist getopt getnameinfo getrlimit getrusage getttyent glob inet_aton inet_ntoa inet_ntop innetgr login_getcapbool md5_crypt memmove mkdtemp on_exit openpty readpassphrase realpath rresvport_af s...
2000 Aug 01
2
[2.1.1p4] utmp patch for SunOS 4.1.x
...ll.h pty.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h stddef.h time.h usersec.h util.h utmp.h utmpx.h)
# Checks for library functions.
! AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_af clock freeaddrinfo gai_strerror getaddrinfo getnameinfo getrusage inet_aton innetgr md5_crypt memmove mkdtemp on_exit openpty rresvport_af setenv seteuid setlogin setproctitle setreuid sigaction sigvec snprintf strerror strlcat strlcpy strsep vsnprintf vhangup _getpty __b64_ntop)...
2008 May 13
2
[LLVMdev] memcpy and bootstrapping
...The result: an object file with an undefined reference to
memcpy().
It seems to me like I shouldn't be surprised that LLVM-LD doesn't look
for my hand-rolled memcpy(). I'm using -link-as-library with -
internalize-public-api-list=_start. I suppose I'll end up ripping off
bcopy.s for ARM from the obvious place, and assembling that for use in
the final link. That should solve my problem.
I mention it here because it was a little surprising when my memcpy()
didn't show up where I expected.
—
j h woodyatt <jhw at conjury.org>
http://jhw.vox.com/
2015 Oct 15
3
Building R for AIX in 64-bit mode
...Duplicate symbol: p_xargv
ld: 0711-224 WARNING: Duplicate symbol: p_xrcfg
ld: 0711-224 WARNING: Duplicate symbol: p_xrc
ld: 0711-224 WARNING: Duplicate symbol: end
ld: 0711-224 WARNING: Duplicate symbol: .memcpy
ld: 0711-224 WARNING: Duplicate symbol: memcpy
ld: 0711-224 WARNING: Duplicate symbol: .bcopy
ld: 0711-224 WARNING: Duplicate symbol: bcopy
ld: 0711-224 WARNING: Duplicate symbol: .strcmp
ld: 0711-224 WARNING: Duplicate symbol: strcmp
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more
information.
root at x072:[/data/prj/cran/64/R-3.1.3/src/modules/lapack]
So, for today, my...
2010 Jun 28
23
zpool import hangs indefinitely (retry post in parts; too long?)
Now at 36 hours since zdb process start and:
PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP
827 root 4936M 4931M sleep 59 0 0:50:47 0.2% zdb/209
Idling at 0.2% processor for nearly the past 24 hours... feels very stuck. Thoughts on how to determine where and why?
--
This message posted from opensolaris.org
2015 Oct 18
2
Building R for AIX in 32-bit mode - as preparation for building in 64-bit mode (changed subject!) - INFO/FEEDBACK - do not read as a bug report!
...[-Wimplicit-function-declaration]
main.c: In function 'dummy_ii':
main.c:1594:5: warning: function returns address of local variable
[enabled by default]
ld: 0711-224 WARNING: Duplicate symbol: .memcpy
ld: 0711-224 WARNING: Duplicate symbol: memcpy
ld: 0711-224 WARNING: Duplicate symbol: .bcopy
ld: 0711-224 WARNING: Duplicate symbol: bcopy
ld: 0711-224 WARNING: Duplicate symbol: .strcmp
ld: 0711-224 WARNING: Duplicate symbol: strcmp
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more
information.
Warning in solve.default(rgb) :
unable to load shared object
'/data/pr...
2005 Oct 24
2
Compilation package error
...eps.c
gcc -o macheps ./src/meschach/fmacheps.c
computing M_MAX_INT
gcc -o maxint maxint.c
./src/meschach/maxint.c: In function 'main':
./src/meschach/maxint.c:37: warning: incompatible implicit declaration
of built-in function 'printf'
checking char \\0 vs. float zeros
checking for bcopy... yes
checking for bzero... yes
checking for function prototypes
checking for function prototypes in structures
updating cache ./config.cache
creating ./config.status
creating makefile
creating src/config.h
creating src/machine.h
** libs
gcc -I/usr/lib/R/include -mieee-with-inexact -fPIC -g -O...