jjuran / metamage_1

Metamage open source, general repository, iteration 1
306 stars 27 forks source link

C standard my compiler uses didn't include uint64_t or gettimeofday #1

Closed johnoliverdriscoll closed 1 year ago

johnoliverdriscoll commented 12 years ago

Don't know if this is the expected result, but I was able to compile and run:

0 default ctor : 0 0 0 1 small ctor : 100 0 0 2 normal ctor : 100 100 0 3 small copy : 100 100 100 4 sharable copy : 0 0 0 5 static copy : SKIP 100 0 6 const iterator : 100 0 0 7 (COW) iterator : 100 0 100 8 unsharable copy: 100 0 100 9 unsharable move: 100 0 100 10 small move : 100 100 0 11 sharable move : 100 0 0 12 moved iterator : 100 100 0

jjuran commented 1 year ago

Missing uint64_t definition fixed by a1e144827485c1d75fd31e42388ff53ce953f62d. Missing gettimeofday() declaration fixed by 4d7e75bde4b44867586355b54e531be60c1dd0a4. Improper use of non-monotonic clock fixed by f7466c11025b2eede296d23640a37b5d0a3c68f8.