Rev 1594 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1594 | Rev 1702 | ||
|---|---|---|---|
| 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 | /** @defgroup mm Memory management |
|
| - | 30 | * @ingroup kernel |
|
| - | 31 | * @{ |
|
| - | 32 | * @} |
|
| - | 33 | */ |
|
| - | 34 | ||
| - | 35 | /** @addtogroup genericmm generic |
|
| - | 36 | * @ingroup mm |
|
| - | 37 | * @{ |
|
| - | 38 | */ |
|
| - | 39 | ||
| 29 | /** |
40 | /** |
| 30 | * @file as.c |
41 | * @file |
| 31 | * @brief Address space related functions. |
42 | * @brief Address space related functions. |
| 32 | * |
43 | * |
| 33 | * This file contains address space manipulation functions. |
44 | * This file contains address space manipulation functions. |
| 34 | * Roughly speaking, this is a higher-level client of |
45 | * Roughly speaking, this is a higher-level client of |
| 35 | * Virtual Address Translation (VAT) subsystem. |
46 | * Virtual Address Translation (VAT) subsystem. |
| Line 1522... | Line 1533... | ||
| 1522 | /** Wrapper for as_area_destroy. */ |
1533 | /** Wrapper for as_area_destroy. */ |
| 1523 | __native sys_as_area_destroy(__address address) |
1534 | __native sys_as_area_destroy(__address address) |
| 1524 | { |
1535 | { |
| 1525 | return (__native) as_area_destroy(AS, address); |
1536 | return (__native) as_area_destroy(AS, address); |
| 1526 | } |
1537 | } |
| - | 1538 | ||
| - | 1539 | /** @} |
|
| - | 1540 | */ |
|
| - | 1541 | ||