Rev 1223 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1223 | 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 generic |
|
- | 30 | * @{ |
|
- | 31 | */ |
|
- | 32 | /** @file |
|
- | 33 | */ |
|
- | 34 | ||
29 | #ifndef __ARCH_H__ |
35 | #ifndef __ARCH_H__ |
30 | #define __ARCH_H__ |
36 | #define __ARCH_H__ |
31 | 37 | ||
32 | #include <arch/types.h> |
38 | #include <arch/types.h> |
33 | #include <arch/arch.h> |
39 | #include <arch/arch.h> |
Line 72... | Line 78... | ||
72 | extern ipl_t interrupts_enable(void); |
78 | extern ipl_t interrupts_enable(void); |
73 | extern void interrupts_restore(ipl_t ipl); |
79 | extern void interrupts_restore(ipl_t ipl); |
74 | extern ipl_t interrupts_read(void); |
80 | extern ipl_t interrupts_read(void); |
75 | 81 | ||
76 | #endif |
82 | #endif |
- | 83 | ||
- | 84 | /** @} |
|
- | 85 | */ |
|
- | 86 |