Changeset 79ea5af in mainline for uspace/app/tester/mm/pager1.c


Ignore:
Timestamp:
2017-03-30T20:47:53Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
67e881c
Parents:
ae7bfbbd
Message:

Rename unlink() to vfs_unlink_path() and _vfs_unlink() to vfs_unlink()

  • Also, remove rmdir()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/mm/pager1.c

    rae7bfbbd r79ea5af  
    2828
    2929#include <stdio.h>
    30 #include <unistd.h>
     30#include <vfs/vfs.h>
    3131#include <fcntl.h>
    3232#include <stdlib.h>
     
    5151        if (fd < 0)
    5252                return NULL;
    53         (void) unlink(TEST_FILE);
     53        (void) vfs_unlink_path(TEST_FILE);
    5454
    5555        if (write(fd, (aoff64_t []) {0}, text, sizeof(text)) != sizeof(text)) {
Note: See TracChangeset for help on using the changeset viewer.