Changeset 2489d31 for benchmark/io


Ignore:
Timestamp:
Apr 23, 2020, 4:21:49 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
ecf6b46
Parents:
8962722
Message:

Removed the async_ prefix of I/O functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified benchmark/io/readv.cfa

    r8962722 r2489d31  
    1818
    1919extern bool traceHeapOn();
    20 extern ssize_t async_preadv2(int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags);
     20extern ssize_t cfa_preadv2(int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags);
    2121
    2222int fd;
     
    3434
    3535        while(__atomic_load_n(&run, __ATOMIC_RELAXED)) {
    36                 async_preadv2(fd, &iov, 1, 0, 0);
     36                cfa_preadv2(fd, &iov, 1, 0, 0);
    3737                __atomic_fetch_add( &count, 1, __ATOMIC_SEQ_CST );
    3838        }
Note: See TracChangeset for help on using the changeset viewer.