我正在學習關於Linux內核的「當前」和我有一個問題什麼是Linux內核源
我看到許多Linux內核源文件有電流 - >文件。那麼什麼是「當前」?
struct file *fget(unsigned int fd)
{
struct file *file;
struct files_struct *files = current->files;
rcu_read_lock();
file = fcheck_files(files, fd);
if (file) {
/* File object ref couldn't be taken */
if (file->f_mode & FMODE_PATH ||
!atomic_long_inc_not_zero(&file->f_count))
file = NULL;
}
rcu_read_unlock();
return file;
}
例子? 'current'是一個非常通用的變量名稱。 – nneonneo