代码搜索:IO控制
找到约 10,000 项符合「IO控制」的源代码
代码结果 10,000
www.eeworm.com/read/209559/4970487
h raw_io.h
/*
* linux/include/asm-m68k/raw_io.h
*
* 10/20/00 RZ: - created from bits of io.h and ide.h to cleanup namespace
*
*/
#ifndef _RAW_IO_H
#define _RAW_IO_H
#ifdef __KERNEL__
#include
www.eeworm.com/read/209559/4971508
h io_trivial.h
/* Trivial implementations of basic i/o routines. Assumes that all
of the hard work has been done by ioremap and ioportmap, and that
access to i/o space is linear. */
/* This file may be incl
www.eeworm.com/read/209559/4971843
h io_generic.h
/*
* include/asm-sh/io_generic.h
*
* Copyright 2000 Stuart Menefy (stuart.menefy@st.com)
*
* May be copied or modified under the terms of the GNU General Public
* License. See linux/COPYING for
www.eeworm.com/read/209559/4972646
c gus_io.c
/*
* Copyright (c) by Jaroslav Kysela
* I/O routines for GF1/InterWave synthesizer chips
*
*
* This program is free software; you can redistribute it and/or modify
* it und
www.eeworm.com/read/209559/4973375
txt dm-io.txt
dm-io
=====
Dm-io provides synchronous and asynchronous I/O services. There are three
types of I/O services available, and each type has a sync and an async
version.
The user must set up an io_regio
www.eeworm.com/read/209559/4973523
txt io-apic.txt
Most (all) Intel-MP compliant SMP boards have the so-called 'IO-APIC',
which is an enhanced interrupt controller, it enables us to route
hardware interrupts to multiple CPUs, or to CPU groups.
Linux
www.eeworm.com/read/209340/4980980
cc mesh_io.cc
#include
MyMesh mesh;
if (!OpenMesh::IO::read_mesh(mesh, "some input file"))
{
std::cerr
www.eeworm.com/read/209340/4981005
cc io_options.cc
#include
#include
// -------------------- OpenMesh
#include
#include
#include
www.eeworm.com/read/209211/4984863
c _io_putc.c
/*
* pANS stdio -- _IO_putc, _IO_cleanup
*/
#include "iolib.h"
void _IO_cleanup(void){
fflush(NULL);
}
/*
* Look this over for simplification
*/
int _IO_putc(int c, FILE *f){
int cnt;
static i
www.eeworm.com/read/209211/4984865
c _io_getc.c
/*
* pANS stdio -- _IO_getc
*/
#include "iolib.h"
int _IO_getc(FILE *f){
int cnt, n;
switch(f->state){
default: /* CLOSED, WR, ERR, EOF */
return EOF;
case OPEN:
_IO_setvbuf(f);
case RDWR: