*参照元 [#ydd9a15d] #backlinks *説明 [#z23d6559] -パス: [[linux-2.6.33/]] -パス: [[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, unsigned int cmd, 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, cmd, (void __user *)arg); - --[[linux-2.6.33/snd_pcm_capture_ioctl1()]] } *コメント [#y7671079]