Rev 1493 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1493 | Rev 1653 | ||
---|---|---|---|
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 libc |
|
- | 30 | * @{ |
|
- | 31 | */ |
|
- | 32 | /** @file |
|
- | 33 | */ |
|
- | 34 | ||
29 | #ifndef __LIBC_DDI_H__ |
35 | #ifndef __LIBC_DDI_H__ |
30 | #define __LIBC_DDI_H__ |
36 | #define __LIBC_DDI_H__ |
31 | 37 | ||
32 | #include <task.h> |
38 | #include <task.h> |
33 | 39 | ||
34 | extern int map_physmem(void *pf, void *vp, unsigned long pages, int flags); |
40 | extern int map_physmem(void *pf, void *vp, unsigned long pages, int flags); |
35 | extern int iospace_enable(task_id_t id, void *ioaddr, unsigned long size); |
41 | extern int iospace_enable(task_id_t id, void *ioaddr, unsigned long size); |
36 | extern int preemption_control(int enable); |
42 | extern int preemption_control(int enable); |
37 | 43 | ||
38 | #endif |
44 | #endif |
- | 45 | ||
- | 46 | ||
- | 47 | /** @} |
|
- | 48 | */ |
|
- | 49 | ||
- | 50 |