"Немає вручну запису для pthread" - не вдалося знайти доменну сторінку за назвою


18

Я новачок у Ubuntu, хотів кодувати блок читання-записувача в Операційній системі, але коли я запустив команду, man pthreadвона дала мені помилку, не було вручну запису для pthread . Що можна зробити для вирішення проблеми?

Відповіді:


26

Спочатку встановіть ці Manpages:

sudo apt-get install manpages-posix manpages-posix-dev

і потім:

man pthreads

Тепер це має працювати.


Спасибі. Я здогадуюсь, це одна з тих речей, які ти щойно мав знати?
Neonfirelights

1

Гаразд, тому чоловічої сторінки, яку ви шукаєте, немає:

$ man pthread
No manual entry for pthread

Хм ... давайте шукатимемо щось подібне!
Ми виберемо для цього manваріант -k:

$ man -k pthread 
pthread_attr_destroy (3) - initialize and destroy thread attributes object
pthread_attr_getaffinity_np (3) - set/get CPU affinity attribute in thread attributes object
pthread_attr_getdetachstate (3) - set/get detach state attribute in thread attributes object
pthread_attr_getguardsize (3) - set/get guard size attribute in thread attributes object
[... 47 more lines ...]
pthread_timedjoin_np (3) - try to join with a terminated thread
pthread_tryjoin_np (3) - try to join with a terminated thread
pthread_yield (3)    - yield the processor
pthreads (7)         - POSIX threads
vfs_aio_pthread (8)  - implement async I/O in Samba vfs using a pthread pool

Гаразд ... деякі пов'язані речі ... О! pthreadsвиглядає цікаво!

$ man pthreads|head -n 12
PTHREADS(7)           Linux Programmer's Manual          PTHREADS(7)



NAME
       pthreads - POSIX threads

DESCRIPTION
       POSIX.1  specifies  a  set  of  interfaces (functions, header
       files) for  threaded  programming  commonly  known  as  POSIX
       threads,  or Pthreads.  A single process can contain multiple
       threads, all of which are executing the same program.   These

Тепер, схоже, ми його знайшли!

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.