~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/lib/block/libblock.h

  • Committer: Jakub Jermar
  • Date: 2011-06-02 21:26:44 UTC
  • mfrom: (720.2.82 ext2-merge)
  • Revision ID: jakub@jermar.eu-20110602212644-t5p3o4bux1n8ybvd
Merge from http://ho.st.dcs.fmph.uniba.sk/~mato/bzr/helenos-ext2.

Changes made against the ext2 branch parent:
- removed .bzrignore
- removed all traces of pipefs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Copyright (c) 2008 Jakub Jermar
3
3
 * Copyright (c) 2008 Martin Decky 
 
4
 * Copyright (c) 2011 Martin Sucha 
4
5
 * All rights reserved.
5
6
 *
6
7
 * Redistribution and use in source and binary forms, with or without
112
113
extern int block_get_bsize(devmap_handle_t, size_t *);
113
114
extern int block_get_nblocks(devmap_handle_t, aoff64_t *);
114
115
extern int block_read_direct(devmap_handle_t, aoff64_t, size_t, void *);
 
116
extern int block_read_bytes_direct(devmap_handle_t, aoff64_t, size_t, void *);
115
117
extern int block_write_direct(devmap_handle_t, aoff64_t, size_t, const void *);
116
118
 
117
119
#endif