- Timestamp:
- Nov 16, 2007, 5:34:20 PM (17 years ago)
- Location:
- branches/working-0711/ccl/lisp-kernel
- Files:
-
- 6 edited
-
image.c (modified) (1 diff)
-
pmcl-kernel.c (modified) (4 diffs)
-
ppc-exceptions.c (modified) (1 diff)
-
ppc-gc.c (modified) (1 diff)
-
x86-exceptions.c (modified) (1 diff)
-
x86-gc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/lisp-kernel/image.c
r7624 r7668 353 353 count = total; 354 354 } 355 bcopy(a->low+done,buffer,count);355 memmove(buffer,a->low+done,count); 356 356 n = write(fd, buffer, count); 357 357 if (n < 0) { -
branches/working-0711/ccl/lisp-kernel/pmcl-kernel.c
r7137 r7668 932 932 if (_NSGetExecutablePath(exepath, (void *)&len) == 0) { 933 933 p = malloc(len+1); 934 bcopy(exepath, p, len);934 memmove(p, exepath, len); 935 935 p[len]=0; 936 936 return p; … … 944 944 if ((n = readlink("/proc/self/exe", exepath, PATH_MAX)) > 0) { 945 945 p = malloc(n+1); 946 bcopy(exepath,p,n);946 memmove(p,exepath,n); 947 947 p[n]=0; 948 948 return p; … … 961 961 if ((n = readlink(proc_path, exepath, PATH_MAX)) > 0) { 962 962 p = malloc(n+1); 963 bcopy(exepath,p,n);963 memmove(p,exepath,n); 964 964 p[n]=0; 965 965 return p; … … 1282 1282 _exit(1); 1283 1283 } 1284 bcopy(old, new, 0x1000);1284 memmove(new, old, 0x1000); 1285 1285 } 1286 1286 #endif -
branches/working-0711/ccl/lisp-kernel/ppc-exceptions.c
r7657 r7668 2455 2455 stackp = TRUNC_DOWN(stackp, sizeof(*mc), C_STK_ALIGN); 2456 2456 mc = (MCONTEXT_T) ptr_from_lispobj(stackp); 2457 bcopy(&ts,&(mc->__ss),sizeof(ts));2457 memmove(&(mc->__ss),&ts,sizeof(ts)); 2458 2458 2459 2459 thread_state_count = PPC_FLOAT_STATE_COUNT; -
branches/working-0711/ccl/lisp-kernel/ppc-gc.c
r7630 r7668 2381 2381 } 2382 2382 a->active += n; 2383 bcopy(ro_base, oldfree, n);2383 memmove(oldfree, ro_base, n); 2384 2384 munmap(ro_base, n); 2385 2385 a->ndnodes = area_dnode(a, a->active); -
branches/working-0711/ccl/lisp-kernel/x86-exceptions.c
r7657 r7668 2210 2210 #endif 2211 2211 2212 bcopy(ts,&(mc->__ss),sizeof(*ts));2212 memmove(&(mc->__ss),ts,sizeof(*ts)); 2213 2213 2214 2214 thread_state_count = x86_FLOAT_STATE64_COUNT; -
branches/working-0711/ccl/lisp-kernel/x86-gc.c
r7638 r7668 2358 2358 } 2359 2359 a->active += n; 2360 bcopy(ro_base, oldfree, n);2360 memmove(oldfree, ro_base, n); 2361 2361 munmap((void *)ro_base, n); 2362 2362 a->ndnodes = area_dnode(a, a->active);
Note:
See TracChangeset
for help on using the changeset viewer.
