bcopy and memcpy

Posted on Updated on

I tried in ubuntu 2.6.17 with 1.5Mbytes memory. run on IBM A30 Pentium-4 500Mhz cpu and 256MB ram
bcopy –> 0.37 seconds
memcpy –> 1.30 seconds

  • bcopy is safer and faster than memcpy, as bcopy takes care about overlap. origin comment
  • 發表留言