Changeset View
Changeset View
Standalone View
Standalone View
sys/kern/kern_descrip.c
Show First 20 Lines • Show All 4,387 Lines • ▼ Show 20 Lines | file_type_to_name(short type) | ||||
case DTYPE_SEM: | case DTYPE_SEM: | ||||
return ("ksem"); | return ("ksem"); | ||||
case DTYPE_PTS: | case DTYPE_PTS: | ||||
return ("pts"); | return ("pts"); | ||||
case DTYPE_DEV: | case DTYPE_DEV: | ||||
return ("dev"); | return ("dev"); | ||||
case DTYPE_PROCDESC: | case DTYPE_PROCDESC: | ||||
return ("proc"); | return ("proc"); | ||||
case DTYPE_LINUXEFD: | case DTYPE_EVENTFD: | ||||
return ("levent"); | return ("eventfd"); | ||||
case DTYPE_LINUXTFD: | case DTYPE_LINUXTFD: | ||||
return ("ltimer"); | return ("ltimer"); | ||||
default: | default: | ||||
return ("unkn"); | return ("unkn"); | ||||
} | } | ||||
} | } | ||||
/* | /* | ||||
▲ Show 20 Lines • Show All 330 Lines • Show Last 20 Lines |