NeXTSTEPDRIVERKIT:Chapter5 Functions: Difference between revisions

From 흡혈양파의 번역工房
Jump to navigation Jump to search
(NeXTSTEP DRIVER KIT 함수 중간내용 추가)
(내용 추가)
 
Line 624: Line 624:
|}
|}


===IOGetObjectForDeviceName()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''이름을 가진 커널 장치의 ID를 얻습니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|IOReturn IOGetObjectForDeviceName(IOString deviceName, id *deviceId)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function provides a simple mapping of device names to objects. Since this is valid only at kernel level, no security mechanism is provided; any kernel code can get the id of any kernel IODevice.<BR>이 함수는 객체에 대한 장치 이름의 간단한 매핑을 제공합니다. 이것은 커널 레벨에서만 유효하기 때문에 보안 메커니즘이 제공되지 않습니다. 모든 커널 코드는 모든 커널 IODevice 의 ID 를 얻을 수 있습니다.<BR><BR>
'''Note:''' This function works only in kernel-level drivers.<BR>
'''Note:''' 이 기능은 커널 수준 드라이버에서만 작동합니다.
|- style="color: black; background-color: white;"
|{{RoundTitleNavy|반환}}|| Returns IO_DR_NOT_ATTACHED if deviceName isn't found; otherwise returns IO_R_SUCCESS.<BR>deviceName 을 찾을 수 없는 경우 IO_DR_NOT_ATTACHED 를 반환합니다. 찾을 수 있다면 IO_R_SUCCESS를 반환합니다.
|}
===IOGetTimestamp()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''마이크로 초 수준의 정확한 현재 타임 스탬프를 얻습니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOGetTimestamp(ns_time_t *nsp)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function obtains a quick, microsecond-accurate, system-wide timestamp.<BR>이 함수는 마이크로 초 단위의 신속한 시스템 전체 타임 스탬프를 얻습니다.
|}
===IOHostPrivSelf()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''커널 I/O 작업의 권한있는 호스트 포트의 버전을 반환합니다.<ref name="host port">http://pge.kr/gnuboard4/bbs/board.php?bo_table=pgetech&wr_id=168</ref>'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|port_t IOHostPrivSelf()
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function is necessary because the Mach function host_priv_self() doesn't work at kernel level.<BR>Mach 함수인 host_priv_self() 는 커널 레벨에서 작동하지 않기 때문에 이 함수가 필요합니다.<BR><BR>
'''Note:''' This function works only in kernel-level drivers. In user-level drivers, use host_priv_self() instead.<BR>이 기능은 커널 수준 드라이버에서만 작동합니다. 사용자 수준 드라이버에서는 이 기능 대신에 host_priv_self() 를 사용하십시오.
|}
===IOInitDDM()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''드라이버 디버깅 모듈 초기화'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/debugging.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|Kernel level: void IOInitDDM(int numBufs)<BR>User level: void IOInitDDM(int numBufs, char *serverPortName)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function must be called once by your driver before calling any other DDM functions.<BR>이 함수는 다른 DDM 함수를 호출하기 전에 드라이버에서 한번 호출해야 합니다.
|}
===IOInitGeneralFuncs()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''범용 함수 초기화(Initialize the general-purpose functions)'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOInitGeneralFuncs()
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| Each user-level driver must call IOInitGeneralFuncs() once before calling any other functions declared in the driverkit/generalFuncs.h header file.<BR>각 사용자 수준 드라이버는 driverkit/generalFuncs.h 헤더 파일에 선언된 다른 함수를 호출하기 전에 IOInitGeneralFuncs() 를 한 번 호출해야합니다.
'''Note:''' Kernel-level drivers don't need to call this function, because it's automatically called by the kernel.<BR>
'''Note:''' 커널 수준 드라이버는 커널에 의해 자동으로 호출되기 때문에이 함수를 호출할 필요가 없습니다.
|}
===IOIsAligned()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''주소 정렬 여부 결정(Determine whether an address is aligned)'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/align.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|unsigned int IOIsAligned(address, bufferSize)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This macro returns a nonzero value if address is a multiple of bufferSize; otherwise, it returns 0.<BR>이 매크로는 address 가 bufferSize 의 배수이면 0 이 아닌 값을 반환하며, 그렇지 않은 경우에는 0 을 반환합니다.
|}
===IOLog()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''문자열을 시스템 로그에 추가합니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOLog(const char *format, ...)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This is the Driver Kit's substitute for printf(); its implementation is similar to syslog(). IOLog() logs the string to /usr/adm/messages by default; you can specify another destination in the configuration file /etc/syslog.conf. The arguments are stdargs, just as for printf(). This function doesn't block on single-processor systems. It runs at level LOG_ERR and its facility is kern.<BR>이것은 Driver Kit 에서 사용되는 printf() 의 대체품이며, 구현은 syslog() 와 유사합니다. IOLog() 는 기본적으로 문자열을 /usr/adm/messages 에 기록하며, /etc/syslog.conf 설정파일에서 에서 다른 기록 대상을 지정할 수 있습니다. 인수는 printf() 와 마찬가지로 stdargs<ref name="표준인자">가변인자를 위한 일종의 표준같은 존재. atdarg.h 를 필요로함</ref> 입니다. 이 기능은 단일 프로세서 시스템에서는 차단되지 않습니다. 이것은 LOG_ERR 수준에서 실행되며 커널의 기능입니다.<BR><BR>
SEE ALSO printf(3) UNIX manual page, syslog(3) UNIX manual page<BR>
관련 항목으로 printf (3) UNIX 매뉴얼 페이지, syslog (3) UNIX 매뉴얼 페이지를 참고.
|}
===IOMalloc()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''표준 메모리 할당자(Standard memory allocator)'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|oid *IOMalloc(int numBytes)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function causes numBytes bytes of memory to be allocated; a pointer to the memory is returned. No guarantees exist as to the alignment or the physical contiguity of the allocated memory, but when IOMalloc() is called at kernel-level, the allocated memory is guaranteed to be wired down. Memory allocated with IOMalloc() should be freed with IOFree().<BR>이 함수는 numBytes 바이트의 메모리를 할당하며, 메모리에 대한 포인터를 반환합니다. 할당 된 메모리의 정렬 또는 물리적 인접성에 대한 보장은 없지만 IOMalloc() 이 커널 수준에서 호출될 때 할당된 메모리는 끝까지(wired down) 보장됩니다. IOMalloc() 으로 할당된 메모리는 IOFree() 로 해제해야합니다.<BR><BR>
Warning: If no memory is available, IOMalloc() blocks until it can obtain memory. For this reason, you shouldn't call IOMalloc() from a direct interrupt handler.<BR>
'''경고:''' 사용할 수있는 메모리가 없으면 IOMalloc() 는 메모리를 확보할 수 있을 때까지 차단됩니다.따라서 직접 인터럽트 핸들러에서 IOMalloc() 를 호출해서는 안됩니다.<BR><BR>
Drivers that can control (directly or indirectly) disks, network cards, or other devices used by a file system can run into a deadlock situation if they use IOMalloc() during I/O. This deadlock can occur when the pageout daemon attempts to free memory by moving pages out to disk. When the pageout daemon requests this I/O and the driver uses IOMalloc() to request more memory than is available, IOMalloc() blocks. The result is deadlock: the driver can't perform the I/O until memory is freed, and the memory can't be freed by the pageout daemon until the I/O happens. In general, a driver can avoid this deadlock by not allocating large amounts of memory during I/O. For example, allocating less than 100 bytes is safe, but allocating 8K bytes is very unsafe.<BR>파일 시스템에서 사용되는 디스크, 네트워크 카드 또는 기타 장치를 (직접 또는 간접적으로) 제어할 수 있는 드라이버는 I/O 중에 IOMalloc() 을 사용하면 교착 상태(deadlock)에 빠질 수 있습니다. 이 교착 상태는 pageout 데몬이 페이지를 디스크로 이동하여 메모리를 확보하려고 할 때 발생할 수 있습니다. pageout 데몬이 이 I/O 를 요청하고 드라이버가 IOMalloc() 을 사용해서 사용 가능한 것보다 많은 메모리를 요청한다면 IOMalloc() 은 차단됩니다. 결과는 교착 상태가 되며, 드라이버는 메모리가 해제될 때까지 I/O 를 수행할 수 없으며, I/O 가 발생할 때까지 메모리를 pageout 데몬에서 해제할 수 없습니다. 일반적으로 드라이버는 I/O 진행중에 많은 양의 메모리를 할당하지 않는것으로 이러한 교착 상태를 피할 수 있습니다. 예를 들어, 100 바이트 미만 할당은 안전하지만 8K 바이트를 할당하는 것은 매우 안전하지 않습니다.
|}
===IOMallocLow()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''16MB 이하의 컴퓨터 메모리 범위에 메모리를 할당합니다.<ref name="역자주:메모리제약">이야.... 이건 마치 OS/2 에서 있던.. 그걸 보는듯한 느낌이군요. 아마도 Intel 머신 전용이 아닐까 싶은데...</ref>'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/i386/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void *IOMallocLow(int numBytes)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function acts like IOMalloc(), except that the allocated range of memory is guaranteed to be in the low 16MB of system memory and to be physically contiguous. This function is provided because some cards for Intel-based computers must be mapped to low memory. Memory allocated with IOMallocLow() should be freed with IOFreeLow().<BR>이 기능은 IOMalloc() 과 동일하게 작동되지만, 할당되는 메모리 범위가 시스템 메모리의 16MB 미만에 물리적으로 인접되어야합니다<ref name="역자주1">16MB 이하의 메모리 address 에 메모리를 할당한다는 의미입니다.</ref>. Intel 기반 컴퓨터의 일부 카드는 낮은 메모리에 매핑해야하기 때문에 이 기능이 제공됩니다<ref name="역자주2">낮은 메모리 address 를 요구하는 Intel 기반 시스템을 의미</ref>. IOMallocLow() 으로 할당된 메모리는 IOFreeLow() 로 해제해야 합니다.<BR><BR>
'''Note:'''  This function works only in kernel-level drivers running on Intel-based computers.<BR>
'''Note:'''  이 함수는 Intel 기반 컴퓨터에서 실행되는 커널 수준 드라이버에서만 작동합니다.
|}
===IOMapPhysicalIntoIOTask===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''실제 주소 범위를 IOTask 의 주소 공간에 매핑하십시오'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|IOReturn IOMapPhysicalIntoIOTask(unsigned physicalAddress, unsigned length, vm_address_t *virtualAddress)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function maps a range of physical memory into your IOTask. It returns the virtual address at which the range is mapped in the virtualAddress argument.<BR>이 함수는 물리적 메모리의 범위를 IOTask 에 매핑합니다. virtualAddress 인수에 범위가 매핑되는 가상 주소를 반환합니다.<BR><BR>
'''Note:'''  This function works only in kernel-level drivers.<BR>
'''Note:'''  이 함수는 커널 수준 드라이버에서만 작동합니다.
|- style="color: black; background-color: white;"
|{{RoundTitleNavy|반환}}|| Returns an error if the specified physical range could not be mapped; otherwise, returns IO_R_SUCCESS.<BR>지정된 물리적 범위를 매핑 할 수 없는 경우라면 오류를 반환하며, 그렇지 않으면 IO_R_SUCCESS 를 반환합니다.
|- style="color: black; background-color: white;"
|{{RoundTitleNavy|관련항목}}|| IOUnmapPhysicalFromIOTask()
|}
===IONsTimeFromDDMMsg()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''드라이버 디버깅 모듈 메시지에서 시간 추출'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/debuggingMsg.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|ns_time_t IONsTimeFromDDMMsg(IODDMMsg *msg)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This inline function combines the timestampHighInt and timestampLowInt fields from msg and returns the result.<BR>이 인라인 함수는 msg 의 timestampHighInt 및 timestampLowInt 필드를 결합한 결과를 반환합니다.
|}
===IOPanic()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''panic 또는 메모리 덤프 후 문자열을 콘솔에 기록'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOPanic(const char *reason)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| The reason argument is logged to the console, after which either a kernel panic (if in kernel space) or a memory dump (if in user space) occurs.<BR>reason 인수가 콘솔에 기록되고, 커널 패닉(커널 공간에있는 경우) 또는 메모리 덤프(사용자 공간에있는 경우)가 발생합니다.<BR><BR>
'''Note:'''  Use of this function is an extreme measure. Use IOPanic() only when continued execution may cause system corruption.<BR>
'''Note:'''  이 기능의 사용은 극단적인 방법입니다. 계속 실행하면 시스템이 손상될 수있는 경우에만 IOPanic() 을 사용하십시오.
|}
===IOPhysicalFromVirtual()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''가상 주소에 해당하는 실제 주소를 찾습니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|IOReturn IOPhysicalFromVirtual(vm_task_t task, vm_address_t virtualAddress, unsigned int *physicalAddress)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function gets the physical address (if any) that corresponds to virtualAddress. It returns IO_R_INVALID_ARG if no physical address corresponds to virtualAddress. On success, it returns IO_R_SUCCESS. If virtualAddress is in the current task, then the task argument should be set to IOVmTaskSelf(). This function will never block. Use this function only to find the physical address of wired down memory since the physical address of unwired down memory might change over time.<BR>이 함수는 virtualAddress 에 해당하는 실제 주소(있을 경우)를 가져옵니다. virtualAddress 에 대응하는 물리적 주소가 없으면 IO_R_INVALID_ARG 를 반환합니다. 성공하면 IO_R_SUCCESS 를 반환합니다. virtualAddress 가 현재 작업에 있다면, 작업의 인수는 IOVmTaskSelf() 로 설정되어야 합니다. 이 기능은 결코 차단되지 않습니다. 연결 해제 된 메모리의 실제 주소는 시간이 지남에 따라 변경될 수 있으므로 메모리한계의 실제 주소를 찾는 경우에만 이 기능을 사용하십시오.<BR><BR>
'''Note:''' This function is available only at kernel level. This function shouldn't be used in a custom interrupt handler--it can't run at the interrupt level.<BR>
'''Note:''' 이 함수는 커널 수준에서만 사용할 수 있습니다. 또한 함수를 사용자 정의 인터럽트 처리기에서 사용하면 안됩니다. 인터럽트 수준에서 실행할 수 없습니다.
|}
===IOReadRegister(), IOWriteRegister(), IOReadModifyWriteRegister()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''디스플레이 레지스터 값 읽기 또는 쓰기'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/i386/displayRegisters.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|unsigned char IOReadRegister( IOEISAPortAddress port, unsigned char index)
void IOWriteRegister( IOEISAPortAddress port, unsigned char index, unsigned char value)
void IOReadModifyWriteRegister( IOEISAPortAddress port, unsigned char index, unsigned char protect, unsigned char
value)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| These inline functions perform operations commonly used to read or write display registers. IOReadRegister reads and returns the value of the register specified by port and index. IOWriteRegister() writes value to the register specified by port and index. IOReadModifyWriteRegister() reads the specified register, zeroes every bit that isn't set in the protect mask, sets every bit that's set in value, and sets the register to the new value. When the protect mask is zero, the effect is to set the register to value.<BR>이러한 인라인 함수는 디스플레이 레지스터를 읽거나 쓰는 데 일반적으로 사용되는 연산을 수행합니다. IOReadRegister 는 port 와 index 에 지정된 레지스터 값을 읽고 반환합니다. IOWriteRegister() 는 port 와 index 에 지정된 레지스터에 값을 씁니다. IOReadModifyWriteRegister() 는 지정된 레지스터를 읽고, 보호 마스크에 설정되지 않은 모든 비트를 0 으로 설정하며, value 로 설정된 모든 비트를 설정한 다음 레지스터를 새 value 로 설정합니다. 보호 마스크가 0 일때에는, 레지스터를 value 로 설정하는 효과가 나타납니다.
<BR><BR>
'''Note:''' These functions are supported only on Intel-based computers.<BR>
'''Note:''' 이 함수는 Intel 기반 컴퓨터에서만 지원됩니다.
|}
===IORemoveFromBdevsw(), IORemoveFromCdevsw(), IORemoveFromVfssw()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''장치 전환 표에서 UNIX 스타일 진입점 제거(Remove UNIX-style entry points from a device switch table)'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/devsw.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IORemoveFromBdevsw(int bdevswNumber)<BR>
void IORemoveFromCdevsw(int cdevswNumber)<BR>
void IORemoveFromVfssw(int vfsswNumber)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| These functions remove a device from a device switch table, replacing it with a null entry.<BR>
이 함수는 장치 전환 테이블에서 장치를 제거하고 null 항목으로 엎어 씌웁니다.<BR><BR>
'''Note:''' You should use IODevice's removeFromBdevsw and removeFromCdevsw methods instead of IORemoveFromBdevsw() and IORemoveFromCdevsw(), whenever possible.<BR>'''Note:''' 가능할 때마다 IORemoveFromBdevsw() 및 IORemoveFromCdevsw() 대신에, IODevice 의 removeFromBdevsw 및 removeFromCdevsw 메소드를 사용해야 합니다.
|}
===IOResumeThread()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''IOSuspendThread() 로 일시 중단된 스레드의 실행 재개'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOResumeThread(IOThread thread)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function causes the execution of a suspended thread to continue.<BR>이 함수는 중단된 스레드의 실행을 재개합니다.
|}
===IOScheduleFunc()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''앞으로 특정 시간에 지정된 함수가 호출되도록 배열하십시오.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOScheduleFunc(IOThreadFunc function, void *arg, int seconds)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function causes function to be called in seconds seconds, with arg as function's argument. The call to function occurs in the context of the caller's task, but in a thread that is unique to the Driver Kit. The call to function can be cancelled with IOUnscheduleFunc().<BR>
이 함수는 함수가 인수로 초 초 단위(seconds seconds)로 호출되도록 합니다. 함수 호출은 호출자의 작업 컨텍스트에서 발생하지만 드라이버 키트에 고유한 스레드에서 발생됩니다. 함수 호출은 IOUnscheduleFunc() 로 취소할 수 있습니다.
<BR><BR>
'''Note:''' The kernel version of IOScheduleFunc() performs the callback in the kernel task's context, not the I/O Task context. One consequence is that function can't send Mach messages with msg_send(); it needs to use msg_send_from_kernel() instead, as described in Chapter 2.<BR>
'''Note:''' IOScheduleFunc() 의 커널 버전은 I/O 작업 컨텍스트가 아닌 커널 작업의 컨텍스트에서 콜백을 수행합니다. 한가지 중요한 점은, 함수가 msg_send() 로는 Mach 메시지를 보낼 수 없다는 것입니다. 2 장에서 설명한 것처럼 그 대신에 msg_send_from_kernel() 을 사용해야 합니다.
|}
===IOSendInterrupt()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''인터럽트 메시지 전송을 위한 배열'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/IODirectDevice.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOSendInterrupt(void *identity, void *state, unsigned int msgId)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function is useful if you need to handle interrupts directly--for example, because of a timing constraint in the hardware--but don't wish to give up the advantages of interrupt notification by messages. To handle interrupts directly, you must implement the getHandler:level:argument:forInterrupt: message of IODirectDevice.<BR>이 함수는 인터럽트를 직접 처리해야 하지만(예를 들어 하드웨어의 타이밍 제약 때문에), 메시지로 인터럽트 알림의 이점을 포기하지 않으려는 경우에 유용합니다. 인터럽트를 직접 처리하려면 IODirectDevice 의 getHandler:level:argument:forInterrupt: 메시지를 구현해야합니다.<BR><BR>
The msgId argument specifies the message ID of the interrupt message that will be sent. This should be IO_DEVICE_INTERRUPT_MSG unless the driver's documentation specifies otherwise. The identify and state arguments should be set to the values that the interrupt handler received in its own arguments. For example (italicized text delineated in angle brackets, that is &#60;&#60; &#62;&#62;, is to be filled in with device-specific code):<BR>
msgId 인수는 보낼 인터럽트 메시지의 메시지 ID 를 지정합니다. 드라이버 설명서에서 별도로 지정되지 않았다면 IO_DEVICE_INTERRUPT_MSG 여야합니다. 식별 및 상태 인수는 인터럽트 처리기가 자체 인수에서 받은 값으로 설정해야 합니다. 예를 들어 (꺾쇠 괄호로 표시된 기울임 꼴 텍스트, 즉 &#60;&#60; &#62;&#62; 는 장치 관련 코드로 채워집니다):<BR>
<syntaxhighlight lang="objc">
static void myInterruptHandler(void *identity, void *state,
    unsigned int arg)
{
    << handle the interrupt >>
    IOSendInterrupt(identity, state, IO_DEVICE_INTERRUPT_MSG);
}
</syntaxhighlight>
|- style="color: black; background-color: white;"
|{{RoundTitleNavy|관련항목}}|| IODisableInterrupt(), IOEnableInterrupt()
|}
===IOSetDDMMask()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''지정된 비트 마스크 word 를 지정된 값으로 설정합니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/debugging.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOSetDDMMask(int index, unsigned int bitmask)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This is typically used by individual user-level drivers at initialization time, if then. Subsequently, it is usually used only by the Driver Debugging Module's server thread to change the current bitmask value.<BR>이 경우 일반적으로 개별 사용자 수준 드라이버가 초기화 시간에 사용되며, 그 다음에는 일반적으로 드라이버 디버깅 모듈의 서버 스레드에서만 현재 비트 마스크 값을 변경하는 데 사용됩니다.
<BR><BR>
The index argument is an index into IODDMMasks, which is an array of unsigned int. Each entry of the array contains 32 mask bits.<BR>index 인수는 IODDMMasks 에 대한 색인이며 부호없는 int 배열입니다. 배열의 각 항목에는 32 개의 마스크 비트가 포함됩니다.
|}
===IOSetUNIXError()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''UNIX 스타일 드라이버에서 오류 값을 명시적(Explicitly)으로 반환합니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOSetUNIXError(int errno)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| Most UNIX-style drivers don't need to use this function. However, those that explicitly set the caller's errno can use this function to do so. This function is used when the caller executes as a result of a UNIX-style entry point.<BR>
대부분의 UNIX 스타일 드라이버는 이 함수를 사용할 필요가 없습니다. 그러나 호출자의 errno 를 명시적으로 설정하는 함수는 이 함수를 사용해서 호출자의 errno 를 사용할 수 있습니다. 이 함수는 호출자가 UNIX 스타일의 진입점의 결과로 실행될 때 사용됩니다.
<BR><BR>
'''Note:''' This function works only in kernel-level drivers.<BR>'''Note:''' 이 함수는 커널 수준 드라이버에서만 작동합니다.
|}
===IOSleep()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''지시된 밀리 초 동안 sleep'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOSleep(unsigned int milliseconds)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function causes the caller to block for the indicated number of milliseconds.<BR>이 함수는 호출자가 표시된 밀리 초 동안 차단하도록 합니다.
|}
===IOSuspendThread()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''IOForkThread() 로 시작된 스레드의 실행을 일시 중단합니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOSuspendThread(IOThread thread)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function causes the execution of a running thread to pause. The thread can be resumed with IOResumeThread().<BR>이 함수는 실행중인 스레드의 실행을 일시 중지시킵니다. IOResumeThread() 로 스레드를 다시 시작할 수 있습니다.
|}
===IOUnmapPhysicalFromIOTask===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''IOTask 의 주소 공간에서 실제 주소 범위 매핑 해제'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|IOReturn IOUnmapPhysicalFromIOTask(vm_address_t virtualAddress, unsigned length)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function unmaps a range of memory that was mapped with IOMapPhysicalIntoIOTask(). You should use this to destroy a mapping when you no longer need to use it.<BR>이 함수는 IOMapPhysicalIntoIOTask() 로 매핑된 메모리 범위를 매핑 해제합니다. 더 이상 사용할 필요가 없는 맵핑을 제거하려면 이 옵션을 사용해야 합니다.<BR><BR>
'''Note:''' This function works only in kernel-level drivers.<BR>'''Note:''' 이 함수는 커널 수준 드라이버에서만 작동합니다.
|- style="color: black; background-color: white;"
|{{RoundTitleNavy|반환}}|| Returns an error if the specified virtual range was not mapped by IOMapPhysicalIntoIOTask(); otherwise, returns IO_R_SUCCESS.<BR>지정된 가상 범위가 IOMapPhysicalIntoIOTask() 에 의해 매핑되지 않은 경우에는 오류를 반환합니다. 그렇지 않으면 IO_R_SUCCESS 를 반환합니다.
|{{RoundTitleNavy|관련항목}}|| IOMapPhysicalIntoIOTask()
|}
===IOUnscheduleFunc()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''IOScheduleFunc() 로 만든 요청을 취소'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/generalFuncs.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|void IOUnscheduleFunc(IOThreadFunc function, void *arg)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function removes a request made using IOScheduleFunc() from the current list of pending requests. An error will be logged to the console if the specified function/arg pair is not currently registered.<BR>이 함수는 현재 보류중인 요청 목록중에서 IOScheduleFunc() 을 사용해서 만들어진 요청을 제거합니다. 지정된 함수/arg 쌍이 현재 등록되지 않았다면 오류가 콘솔에 기록됩니다.
|}
===IOVmTaskCurrent()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''현재 작업의 vm_task_t 를 반환합니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|vm_task_t IOVmTaskCurrent()
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| Returns the vm_task_t for the current task. The only reason to use this function is to perform DMA to user space memory transfers in a UNIX-style driver.<BR>현재 태스크의 vm_task_t 를 반환합니다. 이 기능을 사용하는 유일한 이유는 UNIX 스타일 드라이버에서 DMA 를 사용자 공간 메모리 전송을 수행하기 위해서 입니다.<BR><BR>
'''Note:'''  This function works only in kernel-level drivers.<BR>'''Note:'''  이 기능은 커널 수준 드라이버 에서만 작동합니다.
|- style="color: black; background-color: white;"
|{{RoundTitleNavy|관련항목}}|| IOVmTaskSelf()
|}
===IOVmTaskForBuf()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''buf 구조체와 관련된 vm_task_t 를 반환합니다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|vm_task_t IOVmTaskForBuf(struct buf *buffer)
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| Block drivers use this function to determine the task for which they're doing I/O. The value returned by this function is used in calls to IOPhysicalFromVirtual(), which returns an address that's used in IODirectDevice's createDMABufferFor:... method.<BR>블록 드라이버는이 기능을 사용하여 I/O 작업을 결정합니다. 이 함수가 반환하는 값은 IODirectDevice 의 createDMABufferFor:... 메서드에서 사용되는 주소를 반환하는 IOPhysicalFromVirtual() 에 대한 호출에서 사용됩니다.<BR><BR>
'''Note:''' This function works only in kernel-level drivers.<BR>
'''Note:''' 이 함수는 커널 수준 드라이버에서만 작동합니다.
|}
===IOVmTaskSelf()===
{| class = "collapsible collapsed" width=100% style = "border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; border: 5px groove #000066;"
|- style="color: white; background-color: black;"
| colspan="2" |{{RoundTitleGreen|Function}} '''IOGetDDMMask()'''
|- style="vertical-align:top; color: SteelBlue;"
| style="width:100px;"|'''요약'''
| '''커널의 vm_task_t 를 얻는다.'''
|- style="vertical-align:top; color: Gold; background-color: SteelBlue;"
|'''정의된 위치'''|| driverkit/kernelDriver.h
|- style="vertical-align:top; color: MidnightBlue; background-color: White;"
|'''개요'''
|vm_task_t IOVmTaskSelf()
|- style="vertical-align:top; color: black; background-color: Silver;"
|'''설명'''|| This function is used to obtain the kernel's vm_task_t, which is the vm_task_t for memory allocated with IOMalloc(). This function is required because the type definition of vm_task_t at kernel level is different from that of vm_task_t at user level.<BR>이 함수는 IOMalloc() 으로 할당된 메모리의 vm_task_t 인 커널의 vm_task_t 를 얻는데 사용됩니다. 이 함수는 커널 수준의 vm_task_t  형식 정의(type definition)가 사용자 수준의 vm_task_t 형식 정의와 다르기 때문에 필요합니다.<BR><BR>
'''Note:''' This function works only in kernel-level drivers.<BR>'''Note:''' 이 함수는 커널 수준 드라이버에서만 작동합니다.
|}





Latest revision as of 12:49, 28 January 2018

Functions

함수

This section describes three types of functions and macros:
이 절에서는 세 가지 유형의 함수 및 매크로에 대해 설명합니다.

  • General-purpose functions--to perform basic tasks
    범용 함수--기본 작업 수행
  • Driver Debugging Module (DDM) functions--to help all drivers keep debugging information
    드라이버 디버깅 모듈 (DDM) 함수--모든 드라이버가 디버깅 정보를 유지할 수 있도록 지원
  • Miscellaneous functions--such as DMA alignment macros, functions that work only in the kernel, and functions specific to a particular machine architecture.
    기타 함수--DMA 정렬 매크로, 커널에서만 작동하는 기능 및 특정 시스템 아키텍처와 관련된 함수 등이 있습니다.


Unless noted otherwise, all of the functions described in this section work in both user-level and kernel-level drivers.
별도로 언급하지 않는한, 이 절에서 설명하는 모든 함수는 사용자 수준 및 커널 수준의 드라이버에서 모두 작동합니다.


드라이버가 사용할 수 있는 기타 함수

Almost all Mach functions are available to kernel-level device drivers. If you don't find the appropriate functionality in a method or function, you can use a Mach function. For example, port_allocate() and msg_send() are used by many drivers.
거의 모든 Mach 함수는 커널 수준 장치 드라이버에서 사용할 수 있습니다. 메서드 또는 함수에서 적절한 기능을 찾지 못한다면, Mach 함수를 사용할 수 있습니다. 예를 들어, port_allocate() 및 msg_send() 는 많은 드라이버에서 사용됩니다.


Note: Instead of including the header file mach/mach.h, you must include mach/mach_user_internal.h and mach/mach_interface.h.
Note: mach/mach.h 헤더 파일을 포함(include)하는 대신에 'mach/mach_user_internal.hmach/mach_interface.h 를 포함(include)해야합니다.


The host_priv_self() Mach function does not work in the kernel. You should use IOHostPrivSelf() instead.
host_priv_self() 라는 Mach 함수는 커널에서 작동하지 않습니다. 그 대신에 IOHostPrivSelf() 를 사용해야합니다.


범용 함수(General-Purpose Functions)

The general-purpose functions, defined in the header file driverkit/generalFuncs.h, provide a consistent interface for device drivers that may have to run in kernel space at one time (or in one configuration) and in user space at another time. Using these functions minimizes the work or porting between the two environments. All the Driver Kit classes, as well all NeXT kernel-level drivers that use the Driver Kit, were written using these functions so that they have one set of source files with minimal kernel and user mode differences.
헤더 파일 driverkit/generalFuncs.h 에 정의된 범용 함수는, 한 번(또는 하나의 설정(configuration))에 커널 공간에서 실행해야하는 장치 드라이버와 다른 시점에 사용자 공간에서 실행해야하는 경에 대한 일관된 인터페이스를 제공합니다. 이러한 기능을 사용하면 두 환경 간의 작업 또는 포팅이 최소화됩니다. Driver Kit 클래스 및 Driver Kit 을 사용하는 모든 NeXT 커널 수준 드라이버는, 이러한 기능을 사용해서 커널 및 사용자 모드의 차이가 최소한인 소스 파일 세트를 가지고 있도록 작성되었습니다.


Warning: Before using any of the general-purpose functions, each user-level driver must call IOInitGeneralFuncs(). (Kernel-level drivers don't need to call it.)
Warning: 각각의 사용자 수준 드라이버는 범용 함수를 사용하기 전에 IOInitGeneralFuncs() 를 호출해야합니다. (커널 수준 드라이버는 호출할 필요가 없습니다.)


스레드 함수(Thread Functions)

These functions provide the functionality of the C-thread functions in a uniform way in both user and kernel space.
이 함수는 사용자 및 커널 공간에서 일관된 방식으로 C 스레드 함수의 기능을 제공합니다.

IOForkThread()
IOSuspendThread()
IOResumeThread()
IOExitThread()


타이머 함수(Timer Functions)

IOSleep()
IODelay()
IOScheduleFunc()
IOUnscheduleFunc()
IOGetTimestamp()


메모리 할당 및 복사 함수(Memory Allocation and Copying Functions)

IOCopyMemory()
IOMalloc()
IOFree()


기타 범용 함수(Miscellaneous General-Purpose Functions)

IOInitGeneralFuncs()
IOFindNameForValue()
IOFindValueForName()
IOLog()
IOPanic()


드라이버 디버깅 모듈(DDM) 함수(Driver Debugging Module (DDM) Functions)

See the "Adding Debugging Code" section in Chapter 2 for information on using the DDM.
DDM 사용에 대한 정보는 2 장의 "Adding Debugging Code" 절을 참조하십시오.

IOAddDDMEntry()
IOClearDDM()
IOCopyString()
IODEBUG()
IOGetDDMEntry()
IOGetDDMMask()
IOInitDDM()
IONsTimeFromDDMMsg()
IOSetDDMMask()


기타 함수(Miscellaneous Functions)

커널 전용 함수(Kernel-Only Functions)

The function IOConvertPort() is necessary for some kernel-level drivers--and not for user-level drivers--because kernel-level drivers can execute in more than one task. The first thread of a kernel-level driver executes in the loadable kernel server's task, any threads that the driver creates execute in the kernel I/O task, and network drivers and drivers with UNIX entry points (at some stage) can execute in the context of an unknown task.
커널 수준 드라이버는 둘 이상의 작업을 실행할 수 있기 때문에, IOConvertPort() 함수는 일부 커널 수준 드라이버에는 필요하지만, 사용자 수준 드라이버에는 필요하지 않습니다. 커널 수준 드라이버의 첫 번째 스레드는 로드 가능한 커널 서버의 작업에서 실행되며, 드라이버가 만드는 모든 스레드는 커널 I/O 작업에서 실행되고, 네트워크 드라이버 및 UNIX 진입점(어떤 단계에서)이 있는 드라이버는 알 수 없는 작업(unknown task)의 컨텍스트에서 실행할 수 있습니다.


IOGetObjectForDeviceName() provides to kernel-level drivers some of the functionality provided to user-level programs by IODeviceMaster. Similarly, IOHostPrivSelf() is used by some kernel-level drivers that need the information normally returned by host_priv_self() (which is one of the few Mach functions that doesn't work in the kernel).
IOGetObjectForDeviceName() 은 IODeviceMaster 에 의해 사용자 수준 프로그램에 제공되는 일부 기능을 커널 수준 드라이버에 제공합니다. 마찬가지로, IOHostPrivSelf()host_priv_self()(커널에서 작동하지 않는 소수의 Mach 함수 중 하나) 가 정상적으로 반환한 정보를 필요로하는 일부 커널 수준 드라이버에 의해 사용됩니다.


The function IOVmTaskSelf() supplies a vm_task_t for Mach function calls that expect one for the kernel; this is necessary because vm_task_t and task_t aren't the same in the kernel (as they are at user level). IOVmTaskCurrent() supplies a vm_task_t that's needed by some UNIX-style drivers. Finally, IOVmTaskForBuf() supplies a vm_task_t for the unknown task that is requesting UNIX-style I/O.
IOVmTaskSelf() 함수는 Mach 함수 호출을 위한 vm_task_t 를 제공하는데, 이는 커널 함수를 대기하게 됩니다; 이 상황은 vm_task_ttask_t 가 커널에서 동일하지 않기 때문에(사용자 수준에 있기 때문에) 필요합니다. IOVmTaskCurrent() 는 일부 UNIX 스타일 드라이버에 필요한 vm_task_t 를 제공합니다. 마지막으로 IOVmTaskForBuf() 는 UNIX 스타일의 I/O 를 요청하는 알 수 없는 작업(unknown task)에 대해 vm_task_t 를 제공합니다.

IOConvertPort()
IOGetObjectForDeviceName()
IOHostPrivSelf()
IOPhysicalFromVirtual()
IOSetUNIXError()
IOVmTaskCurrent()
IOVmTaskForBuf()
IOVmTaskSelf()


DMA 정렬 매크로(DMA Alignment Macros)

IOAlign()
IOIsAligned()


아키텍처 관련 함수(Architecture-Specific Functions)

The following functions are used by some Intel drivers to read and write I/O ports:
일부 인텔 드라이버는 다음 기능을 사용해서 I/O 포트를 읽고 씁니다(read/write):

inb()
inw()
inl()
outb()
outw()
outl()


Some Intel drivers use the following function to help handle interrupts:
일부 인텔 드라이버는 다음 함수를 사용해서 인터럽트를 처리합니다:

IODisableInterrupt()
IOEnableInterrupt()
IOSendInterrupt()


Some Intel devices require memory in the low 16 MB:
일부 인텔 장치는 16MB 이하의 메모리가 필요합니다:

IOMallocLow()


Intel display drivers often use the following functions to read and write VGA registers:
인텔 디스플레이 드라이버는 종종 다음 기능을 사용해서 VGA 레지스터를 읽고 씁니다(read/write):

IOReadRegister()
IOReadModifyWriteRegister()
IOWriteRegister()


DriverKitFunctions

inb(), inw(), inl(), outb(), outw(), outl()


IOAddDDMEntry()


IOAddToBdevsw(), IOAddToCdevsw(), IOAddToVfssw()


IOAlign()


IOClearDDM()


IOConvertPort()


IOCopyMemory()


IOCopyString()


IODEBUG()


IODelay()


IODisableInterrupt()


IOEnableInterrupt()


IOExitThread()


IOFindNameForValue(), IOFindValueForName()


IOForkThread()


IOFree()


IOFreeLow()


IOGetDDMEntry()


IOGetDDMMask()


IOGetObjectForDeviceName()


IOGetTimestamp()


IOHostPrivSelf()


IOInitDDM()


IOInitGeneralFuncs()



IOIsAligned()


IOLog()


IOMalloc()


IOMallocLow()


IOMapPhysicalIntoIOTask


IONsTimeFromDDMMsg()


IOPanic()


IOPhysicalFromVirtual()


IOReadRegister(), IOWriteRegister(), IOReadModifyWriteRegister()


IORemoveFromBdevsw(), IORemoveFromCdevsw(), IORemoveFromVfssw()


IOResumeThread()


IOScheduleFunc()


IOSendInterrupt()


IOSetDDMMask()


IOSetUNIXError()


IOSleep()


IOSuspendThread()


IOUnmapPhysicalFromIOTask


IOUnscheduleFunc()


IOVmTaskCurrent()


IOVmTaskForBuf()


IOVmTaskSelf()


Notes

  1. 아마도 int 포인터로 반환하기 때문인듯
  2. http://pge.kr/gnuboard4/bbs/board.php?bo_table=pgetech&wr_id=168
  3. 가변인자를 위한 일종의 표준같은 존재. atdarg.h 를 필요로함
  4. 이야.... 이건 마치 OS/2 에서 있던.. 그걸 보는듯한 느낌이군요. 아마도 Intel 머신 전용이 아닐까 싶은데...
  5. 16MB 이하의 메모리 address 에 메모리를 할당한다는 의미입니다.
  6. 낮은 메모리 address 를 요구하는 Intel 기반 시스템을 의미