| 541 | int mknod(const char *path, mode_t mode, const UserPerm& perms, dev_t rdev=0); |
| 542 | |
| 543 | int open(const char *path, int flags, const UserPerm& perms, mode_t mode=0) { |
| 544 | return open(path, flags, perms, mode, 0, 0, 0, NULL); |
| 545 | } |
| 546 | int open(const char *path, int flags, const UserPerm& perms, |
| 547 | mode_t mode, int stripe_unit, int stripe_count, int object_size, |
| 548 | const char *data_pool) { |
no outgoing calls
no test coverage detected