Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3012 → Rev 3013

/branches/tracing/kernel/generic/src/udebug/udebug_ops.c
526,10 → 526,12
 
/* NOTE: this is not strictly from a syscall... but that shouldn't
* be a problem */
rc = copy_to_uspace((void *)uspace_addr, data, n);
if (rc) return rc;
// rc = copy_to_uspace((void *)uspace_addr, data, n);
// if (rc) return rc;
 
return 0;
rc = as_debug_write(uspace_addr, data, n);
 
return rc;
}
 
/** @}