• Listing 5-4 shows a system call module designed to allocate kernel memory.

    清单5 - 4演示了一个用于分配内核内存的系统调用

    youdao

  • Some functions need to use a system call in order to do their work, others do not.

    有些函数需要使用系统调用完成工作其它函数则需要。

    youdao

  • Most frequently, such calls are made indirectly, though a system call interface.

    通常这种调用通过系统调用接口间接完成

    youdao

  • A user-space emulator such as lxrun waits for the application to try to make a system call.

    用户空间模拟器比如lxrun,会等待应用程序尝试进行系统调用。

    youdao

  • In terms of the way it is called, there is no difference between a system call and a library function.

    调用方式而言系统调用函数之间没有区别。

    youdao

  • Communication with inotify is established through a system call. The available functions are as follows.

    inotify的通信通过系统调用实现。

    youdao

  • This isn't usually a problem when making a system call to the underlying operating system (at least directly).

    底层操作系统发起一个系统调用通常都不是问题至少直接调用时没什么问题)。

    youdao

  • With the syscall function, you can call a system call by specifying its call index and a set of arguments.

    使用syscall函数可以通过指定调用索引参数来调用系统调用。

    youdao

  • Just have your script ask for user name, password, home directory, etc. and invoke adduser with a system call.

    这里只是脚本询问用户密码目录等等system调用调用adduser

    youdao

  • The file descriptor used by inotify is obtained using a system call and does not have an associated device or file.

    Inotify使用文件描述符可以通过系统调用获得并且没有相关设备或者文件。

    youdao

  • When an exception occurs, you might have to examine code inside a system call to determine the cause of the exception.

    发生异常可能需要检查系统调用内部代码确定异常的起因

    youdao

  • The centralized authorization daemon named pdosd then participates in all authorization decisions when a system call is made.

    然后名为pdosd集中授权后台进程在系统调用参与所有授权决策

    youdao

  • OS cache - If the browser cache does not contain the desired record, the browser makes a system call (gethostbyname in Windows).

    系统缓存如果浏览器缓存里没有找到需要记录,浏览器会做一个系统调用(windows里是gethostbyname)。

    youdao

  • The format of the script includes the probe (which fires when a system call is made) and an action (the corresponding action script).

    脚本格式包含探针(在发出系统调用触发操作对应的操作脚本)。

    youdao

  • You set some registers and issue a system call instruction (or an interrupt) and have the kernel code called directly from the trap handler.

    可以设置一些寄存器发出一个系统调用指令(中断),并陷阱处理程序直接调用内核代码

    youdao

  • In the standard 2.6 Linux kernel, when a user space process makes a call into the kernel (through a system call), it cannot be preempted.

    标准2.6Linux内核中,用户空间进程执行内核调用时(通过系统调用),便不能抢占。

    youdao

  • A system call has a well-defined interface, and the calling mechanism can generally be easily detected and handledthat's the easy part.

    系统调用具有明确定义接口而且通常可以方便地检测处理调用机制——简单部分

    youdao

  • So when you invoke a system call from your user code, say from function foo in your program, you are actually invoking a routine in the kernel.

    因此用户代码调用系统调用时(假定程序函数foo调用),实际上调用内核中的例程

    youdao

  • In this article, I explore the Linux SCI, demonstrate adding a system call to the 2.6.17 and prior 2.6 kernels, and then use this function from user-space.

    本文中,将探究LinuxSCI演示如何2.6.20内核添加一个系统调用然后用户空间来使用这个函数

    youdao

  • For example, a probe can represent something as simple as invoking a system call or more complicated interactions such as a particular line of code being executed.

    例如探针可以表示简单系统调用可以表示更加复杂交互比如执行特定代码

    youdao

  • This means that if a low-priority process makes a system call, a high-priority process must wait until that call is complete before it can gain access to the CPU.

    意味着如果优先进程进行系统调用后,高优先级进程必须等到调用结束后才能访问CPU。

    youdao

  • In operating systems, a system call, also known as a system service request, is the mechanism an application USES to request service from the operating system's kernel.

    操作系统中,系统调用称为系统服务请求应用程序用来向操作系统内核请求服务一种机制

    youdao

  • Normally, when a process makes a system call that cannot be completed immediately, the process blocks and another process is scheduled in order to make full use of the processor.

    通常一个进程进行系统调用不能立即完成时为了保证处理器的高利用率,这个进程就会被阻塞其他进程会调度执行

    youdao

  • When an error occurs in a system call, you can access and display a message corresponding to the error in at least one of two ways: by using either the perror or the strerror function.

    系统调用出现错误时,至少可以以下两种方式一种访问显示错误对应消息通过使用perrorstrerror函数

    youdao

  • For example, a system call returning with Err#2 ENOENT (No such file or directory) would indicate that the command is expecting to find a file or directory but can't and subsequently fails.

    例如,如果系统调用返回 Err#2ENOENT没有这样文件目录),表示命令寻找一个文件或目录,但是无法找到,因此运行失败

    youdao

  • A system call returning with Err#28 ENOSPC (No space left on device) would indicate that a disk or file system is full, potentially causing the daemon to fail to respond to service requests.

    如果一个系统调用返回 Err#28ENOSPC设备没有剩余空间),表示磁盘文件系统了,可能导致守护进程无法响应服务请求

    youdao

  • While writing a user space program to execute a system call is the "proper" way to do it, when you just want to test a system call module, it's annoying to have to write an additional program first.

    测试系统调用模块时,编写一个用户空间程序执行一个系统调用种“正规”的方法。但首先编写额外的程序,恼人的事情。怎样才可以执行一个系统调用而又不用编写用户空间的程序呢?

    youdao

  • We live with a value system that I call the Extrovert Ideal—the omnipresent belief that the ideal self is gregarious, and comfortable in the spotlight.

    我们生活称之为外向理想型”的价值体系中——一个无处不在的信念理想的自我善于交际的,聚光灯感到舒适的。

    youdao

  • A new system allows a combine harvester, say, to send a call over to a tractor-trailer so the driver can unload the grain as and when necessary.

    例如一种新的系统允许联合收割机牵引拖车发送呼叫以便司机可以必要的时候卸载谷物

    youdao

  • A new system allows a combine harvester, say, to send a call over to a tractor-trailer so the driver can unload the grain as and when necessary.

    例如一种新的系统允许联合收割机牵引拖车发送呼叫以便司机可以必要的时候卸载谷物

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定