linux-2.6.33/snd_pcm_capture_ioctl()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#ydd9a15d]
#backlinks
*説明 [#z23d6559]
-パス: [[linux-2.6.33/sound/core/pcm_native.c]]
-FIXME: これは何?
--説明
**引数 [#q469074d]
-struct file *file
--
--[[linux-2.6.33/file]]
-unsigned int cmd
--
-unsigned long arg
--
**返り値 [#k1a2272f]
-long
--
**参考 [#q09a1612]
*実装 [#h47661cb]
static long snd_pcm_capture_ioctl(struct file *file, uns...
unsigned long arg)
{
struct snd_pcm_file *pcm_file;
-
--[[linux-2.6.33/snd_pcm_file]]
pcm_file = file->private_data;
if (((cmd >> 8) & 0xff) != 'A')
return -ENOTTY;
return snd_pcm_capture_ioctl1(file, pcm_file->substream...
(void __user *)arg);
-
--[[linux-2.6.33/snd_pcm_capture_ioctl1()]]
}
*コメント [#y7671079]
終了行:
*参照元 [#ydd9a15d]
#backlinks
*説明 [#z23d6559]
-パス: [[linux-2.6.33/sound/core/pcm_native.c]]
-FIXME: これは何?
--説明
**引数 [#q469074d]
-struct file *file
--
--[[linux-2.6.33/file]]
-unsigned int cmd
--
-unsigned long arg
--
**返り値 [#k1a2272f]
-long
--
**参考 [#q09a1612]
*実装 [#h47661cb]
static long snd_pcm_capture_ioctl(struct file *file, uns...
unsigned long arg)
{
struct snd_pcm_file *pcm_file;
-
--[[linux-2.6.33/snd_pcm_file]]
pcm_file = file->private_data;
if (((cmd >> 8) & 0xff) != 'A')
return -ENOTTY;
return snd_pcm_capture_ioctl1(file, pcm_file->substream...
(void __user *)arg);
-
--[[linux-2.6.33/snd_pcm_capture_ioctl1()]]
}
*コメント [#y7671079]
ページ名: