Subversion Repositories HelenOS-historic

Rev

Rev 1637 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1637 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 genarchmm
-
 
30
 * @{
-
 
31
 */
-
 
32
 
29
/**
33
/**
30
 * @file    asid.c
34
 * @file
31
 * @brief   ASID management.
35
 * @brief   ASID management.
32
 *
36
 *
33
 * Modern processor architectures optimize TLB utilization
37
 * Modern processor architectures optimize TLB utilization
34
 * by using ASIDs (a.k.a. memory contexts on sparc64 and
38
 * by using ASIDs (a.k.a. memory contexts on sparc64 and
35
 * region identifiers on ia64). These ASIDs help to associate
39
 * region identifiers on ia64). These ASIDs help to associate
Line 167... Line 171...
167
    asid_put_arch(asid);
171
    asid_put_arch(asid);
168
   
172
   
169
    spinlock_unlock(&asidlock);
173
    spinlock_unlock(&asidlock);
170
    interrupts_restore(ipl);
174
    interrupts_restore(ipl);
171
}
175
}
-
 
176
 
-
 
177
 /** @}
-
 
178
 */
-
 
179