Rev 1266 | Rev 1787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1266 | Rev 1702 | ||
---|---|---|---|
Line 23... | Line 23... | ||
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
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 | ||
- | 29 | /** @addtogroup genarchmm |
|
- | 30 | * @{ |
|
- | 31 | */ |
|
28 | 32 | ||
29 | /** |
33 | /** |
30 | * @file asid_fifo.c |
34 | * @file |
31 | * @brief FIFO queue ASID management. |
35 | * @brief FIFO queue ASID management. |
32 | * |
36 | * |
33 | * Architectures that link with this file keep the unallocated ASIDs |
37 | * Architectures that link with this file keep the unallocated ASIDs |
34 | * in FIFO queue. The queue can be statically (e.g. mips32) or |
38 | * in FIFO queue. The queue can be statically (e.g. mips32) or |
35 | * dynamically allocated (e.g ia64 and sparc64). |
39 | * dynamically allocated (e.g ia64 and sparc64). |
Line 87... | Line 91... | ||
87 | */ |
91 | */ |
88 | void asid_put_arch(asid_t asid) |
92 | void asid_put_arch(asid_t asid) |
89 | { |
93 | { |
90 | fifo_push(free_asids, asid); |
94 | fifo_push(free_asids, asid); |
91 | } |
95 | } |
- | 96 | ||
- | 97 | /** @} |
|
- | 98 | */ |
|
- | 99 |