example programs.
Changelog
+Daniel Fandrich (3 Apr 2008)
+- Made sure that curl_global_init is called in all the multithreaded
+ example programs.
+
Michal Marek (31 Mar 2008)
- Removed the generated ca-bundle.h file. The verbatim value of $ca and
$capath is known to configure, so it can be defined in config.h instead.
return fread(ptr, size, nmemb, stream);
}
-int my_progress_func(GtkWidget *Bar,
+int my_progress_func(GtkWidget *bar,
double t, /* dltotal */
double d, /* dlnow */
double ultotal,
{
/* printf("%d / %d (%g %%)\n", d, t, d*100.0/t);*/
gdk_threads_enter();
- gtk_progress_set_value(GTK_PROGRESS(Bar), d*100.0/t);
+ gtk_progress_set_value(GTK_PROGRESS(bar), d*100.0/t);
gdk_threads_leave();
return 0;
}
GtkWidget *Window, *Frame, *Frame2;
GtkAdjustment *adj;
+ /* Must initialize libcurl before any threads are started */
+ curl_global_init(CURL_GLOBAL_ALL);
+
/* Init thread */
g_thread_init(NULL);
#include <pthread.h>
#include <curl/curl.h>
+#define NUMT 4
+
/*
List of URLs to fetch.
http://www.openssl.org/docs/crypto/threads.html#DESCRIPTION
*/
-const char *urls[]= {
+const char * const urls[NUMT]= {
"http://curl.haxx.se/",
"ftp://cool.haxx.se/",
"http://www.contactor.se/",
"www.haxx.se"
};
-void *pull_one_url(void *url)
+static void *pull_one_url(void *url)
{
CURL *curl;
int main(int argc, char **argv)
{
- pthread_t tid[4];
+ pthread_t tid[NUMT];
int i;
int error;
- for(i=0; i< 4; i++) {
+
+ /* Must initialize libcurl before any threads are started */
+ curl_global_init(CURL_GLOBAL_ALL);
+
+ for(i=0; i< NUMT; i++) {
error = pthread_create(&tid[i],
NULL, /* default attributes please */
pull_one_url,
}
/* now wait for all threads to terminate */
- for(i=0; i< 4; i++) {
+ for(i=0; i< NUMT; i++) {
error = pthread_join(tid[i], NULL);
fprintf(stderr, "Thread %d terminated\n", i);
}
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
int j = 0;
gint num_urls = 9; /* Just make sure this is less than urls[]*/
-char *urls[]= {
+const char * const urls[]= {
"90022",
"90023",
"90024",
CURLcode res;
gchar *http;
FILE *outfile;
- gint i;
/* Stop threads from entering unless j is incremented */
pthread_mutex_lock(&lock);
int main(int argc, char **argv)
{
GtkWidget *top_window, *outside_frame, *inside_frame, *progress_bar;
- GtkAdjustment *adj;
+
+ /* Must initialize libcurl before any threads are started */
+ curl_global_init(CURL_GLOBAL_ALL);
/* Init thread */
g_thread_init(NULL);
#include <pthread.h>
#include <curl/curl.h>
+#define NUMT 4
+
/* we have this global to let the callback get easy access to it */
static pthread_mutex_t *lockarray;
#endif
/* List of URLs to fetch.*/
-const char *urls[]= {
+const char * const urls[]= {
"https://www.sf.net/",
"https://www.openssl.org/",
"https://www.sf.net/",
int main(int argc, char **argv)
{
- pthread_t tid[4];
+ pthread_t tid[NUMT];
int i;
int error;
(void)argc; /* we don't use any arguments in this example */
(void)argv;
+ /* Must initialize libcurl before any threads are started */
+ curl_global_init(CURL_GLOBAL_ALL);
+
init_locks();
- for(i=0; i< 4; i++) {
+ for(i=0; i< NUMT; i++) {
error = pthread_create(&tid[i],
NULL, /* default attributes please */
pull_one_url,
}
/* now wait for all threads to terminate */
- for(i=0; i< 4; i++) {
+ for(i=0; i< NUMT; i++) {
error = pthread_join(tid[i], NULL);
fprintf(stderr, "Thread %d terminated\n", i);
}