Rev 1307 | Rev 1363 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1307 | Rev 1330 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | #ifndef __AS_H__ |
29 | #ifndef __libc_AS_H__ |
| 30 | #define __AS_H__ |
30 | #define __libc_AS_H__ |
| 31 | 31 | ||
| 32 | #include <types.h> |
32 | #include <types.h> |
| 33 | #include <task.h> |
33 | #include <task.h> |
| - | 34 | #include <kernel/mm/as.h> |
|
| 34 | 35 | ||
| 35 | extern void *as_area_create(void *address, size_t size, int flags); |
36 | extern void *as_area_create(void *address, size_t size, int flags); |
| 36 | extern int as_area_resize(void *address, size_t size, int flags); |
37 | extern int as_area_resize(void *address, size_t size, int flags); |
| 37 | extern int as_area_destroy(void *address); |
38 | extern int as_area_destroy(void *address); |
| 38 | extern int as_area_accept(task_id_t id, void *base, size_t size, int flags); |
- | |
| 39 | extern int as_area_send(task_id_t id, void *base); |
- | |
| 40 | 39 | ||
| 41 | #endif |
40 | #endif |