Visualizzazione dei risultati da 1 a 4 su 4
  1. #1
    Utente di HTML.it L'avatar di angelo85ct
    Registrato dal
    Dec 2007
    Messaggi
    322

    Comando librerie da scell su linux

    Ciao ragazzi, chi di voi mi sa dire come posso aprire le guide sulle librerie sui pthread e sui file tramite la schell di linux?

  2. #2
    Se cerchi informazioni su una specifica funzione e hai i pacchetti della documentazione installati puoi usare man; ad esempio
    codice:
    man pthread_create
    PTHREAD_CREATE(P)          POSIX Programmer's Manual         PTHREAD_CREATE(P)
    
    NAME
           pthread_create - thread creation
    
    SYNOPSIS
           #include <pthread.h>
    
           int pthread_create(pthread_t *restrict thread,
                  const pthread_attr_t *restrict attr,
                  void *(*start_routine)(void*), void *restrict arg);
    
    DESCRIPTION
           The   pthread_create()   function  shall  create  a  new  thread,  with
           attributes specified by attr, within a process. If attr  is  NULL,  the
           default  attributes  shall be used. If the attributes specified by attr
           are modified later, the thread's attributes shall not be affected. Upon
           successful  completion, pthread_create() shall store the ID of the cre‐
           ated thread in the location referenced by thread.
    
           The thread is created executing start_routine  with  arg  as  its  sole
           argument. If the start_routine returns, the effect shall be as if there
           was an implicit call  to  pthread_exit()  using  the  return  value  of
    (eccetera)
    Amaro C++, il gusto pieno dell'undefined behavior.

  3. #3
    Utente di HTML.it L'avatar di angelo85ct
    Registrato dal
    Dec 2007
    Messaggi
    322
    Grazie

  4. #4
    Prego.

    ... dimenticavo: si scrive shell, non scell e nemmeno schell.
    Amaro C++, il gusto pieno dell'undefined behavior.

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.