multithread.c
Go to the documentation of this file.
1 /***************************************************************************
2  * _ _ ____ _
3  * Project ___| | | | _ \| |
4  * / __| | | | |_) | |
5  * | (__| |_| | _ <| |___
6  * \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at https://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 /* <DESC>
23  * A multi-threaded example that uses pthreads to fetch several files at once
24  * </DESC>
25  */
26 
27 #include <stdio.h>
28 #include <pthread.h>
29 #include <curl/curl.h>
30 
31 #define NUMT 4
32 
33 /*
34  List of URLs to fetch.
35 
36  If you intend to use a SSL-based protocol here you might need to setup TLS
37  library mutex callbacks as described here:
38 
39  https://curl.haxx.se/libcurl/c/threadsafe.html
40 
41 */
42 const char * const urls[NUMT]= {
43  "https://curl.haxx.se/",
44  "ftp://cool.haxx.se/",
45  "http://www.contactor.se/",
46  "www.haxx.se"
47 };
48 
49 static void *pull_one_url(void *url)
50 {
51  CURL *curl;
52 
53  curl = curl_easy_init();
54  curl_easy_setopt(curl, CURLOPT_URL, url);
55  curl_easy_perform(curl); /* ignores error */
56  curl_easy_cleanup(curl);
57 
58  return NULL;
59 }
60 
61 
62 /*
63  int pthread_create(pthread_t *new_thread_ID,
64  const pthread_attr_t *attr,
65  void * (*start_func)(void *), void *arg);
66 */
67 
68 int main(int argc, char **argv)
69 {
70  pthread_t tid[NUMT];
71  int i;
72  int error;
73 
74  /* Must initialize libcurl before any threads are started */
76 
77  for(i = 0; i< NUMT; i++) {
78  error = pthread_create(&tid[i],
79  NULL, /* default attributes please */
81  (void *)urls[i]);
82  if(0 != error)
83  fprintf(stderr, "Couldn't run thread number %d, errno %d\n", i, error);
84  else
85  fprintf(stderr, "Thread %d, gets %s\n", i, urls[i]);
86  }
87 
88  /* now wait for all threads to terminate */
89  for(i = 0; i< NUMT; i++) {
90  error = pthread_join(tid[i], NULL);
91  fprintf(stderr, "Thread %d terminated\n", i);
92  }
93 
94  return 0;
95 }
#define curl_easy_setopt(handle, option, value)
Definition: typecheck-gcc.h:41
unsigned int i
Definition: unit1303.c:79
static void * pull_one_url(void *url)
Definition: multithread.c:49
int main(int argc, char **argv)
Definition: multithread.c:68
#define NUMT
Definition: multithread.c:31
const char *const urls[NUMT]
Definition: multithread.c:42
CURL_EXTERN CURL * curl_easy_init(void)
Definition: easy.c:343
CURL_EXTERN void curl_easy_cleanup(CURL *curl)
CURL_EXTERN CURLcode curl_global_init(long flags)
curl_global_init() globally initializes curl given a bitwise set of the different features of what to...
Definition: easy.c:271
void CURL
Definition: curl.h:102
#define fprintf
Definition: curl_printf.h:41
#define CURL_GLOBAL_ALL
Definition: curl.h:2519
static CURL * curl
Definition: sessioninfo.c:35
CURL_EXTERN CURLcode curl_easy_perform(CURL *curl)


rc_tagdetect_client
Author(s): Monika Florek-Jasinska , Raphael Schaller
autogenerated on Sat Feb 13 2021 03:42:16