Subversion Repositories HelenOS

Rev

Rev 2015 | Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2015 Rev 2069
Line 230... Line 230...
230
 * @param backend Address space area backend. NULL if no backend is used.
230
 * @param backend Address space area backend. NULL if no backend is used.
231
 * @param backend_data NULL or a pointer to an array holding two void *.
231
 * @param backend_data NULL or a pointer to an array holding two void *.
232
 *
232
 *
233
 * @return Address space area on success or NULL on failure.
233
 * @return Address space area on success or NULL on failure.
234
 */
234
 */
-
 
235
as_area_t *
235
as_area_t *as_area_create(as_t *as, int flags, size_t size, uintptr_t base, int attrs,
236
as_area_create(as_t *as, int flags, size_t size, uintptr_t base, int attrs,
236
           mem_backend_t *backend, mem_backend_data_t *backend_data)
237
           mem_backend_t *backend, mem_backend_data_t *backend_data)
237
{
238
{
238
    ipl_t ipl;
239
    ipl_t ipl;
239
    as_area_t *a;
240
    as_area_t *a;
240
   
241