Subversion Repositories HelenOS-historic

Rev

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

Rev 830 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
 /** @addtogroup sparc64mm sparc64
-
 
30
 * @ingroup mm
-
 
31
 * @{
-
 
32
 */
-
 
33
/** @file
-
 
34
 * @ingroup sparc64
-
 
35
 */
-
 
36
 
29
#include <arch/mm/as.h>
37
#include <arch/mm/as.h>
30
#include <genarch/mm/as_ht.h>
38
#include <genarch/mm/as_ht.h>
31
#include <genarch/mm/asid_fifo.h>
39
#include <genarch/mm/asid_fifo.h>
32
 
40
 
33
/** Architecture dependent address space init. */
41
/** Architecture dependent address space init. */
34
void as_arch_init(void)
42
void as_arch_init(void)
35
{
43
{
36
    as_operations = &as_ht_operations;
44
    as_operations = &as_ht_operations;
37
    asid_fifo_init();
45
    asid_fifo_init();
38
}
46
}
-
 
47
 
-
 
48
 /** @}
-
 
49
 */
-
 
50