"Nessuna immissione manuale per pthread" - impossibile trovare la pagina man per nome


18

Sono nuovo di Ubuntu, volevo programmare il blocco lettore-scrittore nel sistema operativo, ma quando ho lanciato il comando man pthreadmi ha dato un errore senza inserimento manuale per pthread . Cosa si può fare per risolvere il problema?

Risposte:


26

Per prima cosa installa queste manpage:

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

e poi:

man pthreads

Ora dovrebbe funzionare.


Grazie. Immagino che questa sia una di quelle cose che devi sapere?
Neonfirelights,

1

Ok, quindi la pagina man che cerchi non è lì:

$ man pthread
No manual entry for pthread

Hmm ... cerchiamo qualcosa di simile!
Selezioneremo manun'opzione -kper questo:

$ 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

Ok ... alcune cose correlate ... Oh! pthreadssembra interessante!

$ 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

Ora, sembra che l'abbiamo trovato!

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.