507 A massa fermentada507 A massa fermentadaPara salvar o arquivo mp3 clique com o bot�o direito do mouse sobre o t�tulo da postagem e salve o arquivo. Os v�deos podem ser encontrados em www.3minutos.net Acompanhe no iTun...
Wednesday, May 31, 2017
A confusion Knowledge Discovery or Data MiningAlthough there have been many practical methods developed and used in data mining, the distinction between data mining and knowledge discovery concepts are not clear yet.The most critical starting point to extinguish this confusion is to summarize the basic concepts about data mining and knowledge discovery.--Knowledge discovery is a non-trivial...

5 Cara Simpel Memotret Makanan yang InstagramableBudaya tidak hanya sekedar makan kian menjamur di era digital. Terutama dengan hadirnya ponsel, kemudahan dalam mengabadikan gambar semakin merambah ke semua kalangan. Makan tidak lagi hanya sekedar makan. "Makan juga harus cantik" kata sebagian food...
A New Beginning Final Cut PCDescri��o:A New Beginning Final Cut � uma aventura cinematogr�fica thriller feito graphic novel estilo. Nesta aventura encantadora e inteligente, a terra est� � beira do cataclismo clima iminente. � essencial para viajar o mundo a fim de poupar a humanidade e salvar o todo...
Tuesday, May 30, 2017
5 Top Gamers Kaya Karena Bermain GameBanyak orang menganggap bahwa bermain game dapat merusak hidup dan kesehatan kita, Namun orang hanya melihat dari segi negatifnya saja. Game juga bisa menjadikan kita kaya dan mendapatkan kedudukan tinggi karena game tidak sepenuhnya merusak dan tidak juga sepenuhnya...
Posted by beni in a, complete, engine, guide, information, on, optimizer, padsa, search, seo, tips, tricks |
May 30, 2017

A Complete Guide on SEO Search Engine Optimizer Tips Tricks Padsa InformationSEO IntroductionSearch Engine Optimization (SEO) is the activity of optimizing web pages or whole sites in order to make them search engine friendly, thus getting higher positions in search results.This tutorial explains simple...
Posted by beni in 5, and, best, forgot, hacking, managers, of, password, passwords, solution, to |
May 30, 2017
5 best Password managers solution to forgot and hacking of passwordsYouve got enough to keep track of in your day-to-day life without filling your head with the countless logins and passwords youve racked up over the years, and the Post-It note on your monitor just isnt an option. Luckily, there are...
Posted by beni in 6, android, best, can, friends, games, multiplayer, play, with, you, your |
May 30, 2017

6 Best Multiplayer Android Games you can play with your FriendsHere you find some mind blowing Android Multiplayer games that change your mind , feel free while playing this games.You interact with your friends through the facebook,the iPhone and from other platform where the game exists.This games...
Posted by beni
May 30, 2017
5 Pthread Mutex in Linux
Mutex is used to synchronize the thread.
What would be the final value of globalCount in below program?
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void *add1_fun(void* arg);
void *add2_fun(void* arg);
int globalCount = 0;
void *add1_fun(void* arg) //thread handler
{
int t_num = (int)arg;
int i = 0;
printf("Thread %d created and running ", t_num);
for (i=0; i<50000; i++){
globalCount++;
}
printf("Thread %d finishes the work ", t_num);
pthread_exit(NULL);
}
void *add2_fun(void* arg) //thread handler
{
int t_num = (int)arg;
int i = 0;
printf("Thread %d created and running ", t_num);
for (i=0; i<50000; i++){
globalCount++;
}
printf("Thread %d finishes the work ", t_num);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
pthread_t mythread1;
pthread_t mythread2;
pthread_attr_t myattr;
void *joinResult;
int x = 0;
int t_arg = 1;
pthread_attr_init(&myattr);
pthread_attr_setdetachstate(&myattr, PTHREAD_CREATE_JOINABLE);
if((pthread_create(&mythread1, &myattr, add1_fun, (void*)t_arg) != 0)){
printf("Error, thread not created properly ");
return 1;
}
t_arg = 2;
if((pthread_create(&mythread2, &myattr, add2_fun, (void*)t_arg) != 0)){
printf("Error, thread not created properly ");
return 1;
}
pthread_attr_destroy(&myattr);
if(pthread_join(mythread1, &joinResult) != 0 ){
printf("Error pthread join ");
return 1;
}
printf("Main : Thread1 joined with result of %d ", (int)joinResult);
if(pthread_join(mythread2, &joinResult) != 0 ){
printf("Error pthread join ");
return 1;
}
printf("Main : Thread2 joined with result of %d ", (int)joinResult);
printf("main finishes the work ");
printf(" Count at end : %d ", globalCount);
pthread_exit(NULL);
}
Thread 1 will increment globalCount for 50000 times and Thread 2 as well. So final value of globalCount would be 100000. But actual output is not 100000.
Each time you execute the program you will get different value.
Because two thread execute concurrently. Consider the situation in which globalCount = 10, suppose in same time each thread increment the globalCount so value will be 11 not 12.
Actual output of above program in my PC is
Thread 1 created and running
Thread 2 created and running
Thread 1 finishes the work
Thread 2 finishes the work
Main : Thread1 joined with result of 0
Main : Thread2 joined with result of 0
main finishes the work
Count at end : 60286
Solution for above problem :
When one thread trying to increment the globalCount we need to lock the variable, then after increment unlock the variable.
This can be establish with the help of mutex API which available in pthread library.;
Steps need for mutex lock and unlock:
- create a mutex variable of type pthread_mutex_t
- lock the globalCount with the help of pthread_mutex_lock API
- unlock the globalCount when finishes the work with the help of pthread_mutex_unlock
PROGRAM :
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void
Search
Blog Archive
-
2021
(1060)
- December (48)
- November (104)
- October (95)
- September (82)
- August (102)
- July (95)
- June (91)
- May (98)
- April (86)
- March (85)
- February (73)
- January (101)
-
2020
(833)
- December (98)
- November (86)
- October (81)
- September (87)
- August (95)
- July (83)
- June (85)
- May (117)
- April (101)
-
2017
(922)
- June (304)
-
May
(315)
- 507 A massa fermentada
- A confusion Knowledge Discovery or Data Mining
- 5 Cara Simpel Memotret Makanan yang Instagramable
- A New Beginning Final Cut PC
- n=""fals"
- 5 Anime Fall 2015 Terbaik
- 5 Top Gamers Kaya Karena Bermain Game
- A Complete Guide on SEO Search Engine Optimizer Ti...
- 5 best Password managers solution to forgot and ha...
- A cunning plan in retrospect!
- A Gameboy powered by Steam
- A BUSINESS MAN
- A Little Bit of Genius at PAX
- 6 Best Multiplayer Android Games you can play with...
- 566 Falsos apostolos e profetas
- 5 Pthread Mutex in Linux
- 7 Zip 16 04 32 64 bit Multilingual
- 5 Best Apple iPad Cases
- 9 Langkah Cepat Selesaikan Outline Tulisan Fiksi N...
- 5 Kesalahan Dalam Mengatur Rencana
- A Convenient Case For All Your Memory Cards
- 99 Polaroid Snap Camera Prints Without Ink
- 8 Cara Sadis dan Kreatif Developer Menghukum Para ...
- 526 Crucificado para o mundo
- A Moment with Marker Interface in Java Development...
- 5 توزيعات لينكس تم تطويرها من طرف دول ولا تستعمل إ...
- 8 Best LCD Televisions of 2017
- 5 Artis Ini Tak Bisa Lepas dari Bayang bayang Pera...
- 547 Justificacao
- A Mente Libera
- 5 Software Gratis Untuk Mempercepat Internet 2012
- 9th Company Roots of Terror PC
- A new era of super Wi Fi
- 7 Tempat Misteri di Indonesia
- 87th Academy Awards The Oscars 2015 HDTVRip 700MB ...
- A Close Look at CCBCs 2015 Data on Books By About ...
- A Microsoft Service for Sharing Useful or Artistic...
- 8 Best Back to School Tech Gadgets for Students
- 506 A arvore mutante
- 5 Tips Utama Lindungi Komputer dari Virus
- 6 أسباب ستجعلك تفضل هاتف نيكزس عن باقي الهواتف الذ...
- 8 Tipe Pria yang Dihindari Wanita
- 900 Archer Reference Pack
- 505 O Reino
- A Large Quantity Of Mushrooms VR Free Download
- A Lenda de Zelda A Lança Mágica do Moblin DS
- 6 Easy ImageMagick Bulk Processing Command Line Ex...
- 5 Step How to Install LibreOffice on Linux Mint
- 82 percent of IT pros think Windows 10 would make ...
- 6 Bash Productivity Tips
- 50 Popular Airline Logos
- 4U Download YouTube Video 4 9 2 Multilingual SERIA...
- 700 Apache 2 4 HTTPS on Windows Server stops worki...
- 9 Langkah Mencegah Virus
- 50 Masakan Terenak Dunia
- A New Beginning – Final Cut Free Download
- 583 Zaqueu
- 5 comportamenti che NON fanno di te uno scrittore
- 6 penemu asal indonesia
- 536 Retocado ou Perdoado
- 8 Ball Pool Game For Android Mobile Apk With rar F...
- 5 Konsol Buruk Rupa yang Bakal Bikin Hasrat Gaming...
- 4x4 Hummer
- 5 RISET DAN APLIKASI SOFTWARE AGENT
- 5 Strategies to Prevent Heart Disease
- 9th PAY REVISION COMMISSION REPORT FOR KERALA GOVE...
- 9 months and counting with the Garmin Vivosmart HR...
- 7th Dragon 2020 PSP ISO
- A geek way to wish Happy Birthday!
- 5k Fans Reached on Facebook Thanks for all your su...
- 5 Ciri Pelaku MH
- A Guide to Commenting on the Blog Posts
- 7 Hal Aneh Dalam Video Game yang Hingga Saat Ini B...
- 4Story Online Hacks Free Download
- A Freshers Guide to IIT Guwahati
- 9 Dígitos iOS
- 5 Cara Menabung dan Hidup Hemat
- A Brave New Record Final Fantasy Brave Exvius Revi...
- A luta agora é nos tabuleiros de Pokémon Duel
- A linux alternative for Windows users Xubuntu 15 04
- 5 Things To Do After Installing Jaunty
- 6 أفضل وأشهر الادوات التي يست� دمها الهاكرز في إ� ...
- A few things on Pythons Error Handling syntax and ...
- 5 Orang yang Masih Hidup Setelah Dihukum Mati
- 581 Incapaz de fazer
- 552 Destino
- 6 Simple Photoshop Tips to Improve Photo Editing S...
- 5 Things Do After installing Linux Mint
- A Goodbye to Dylan Collins 1980 2015
- A Bug Found in Kubuntu 9 04 Jaunty
- A Big N00b Visits Las Vegas
- 5 Best Social Media Marketing Tips for Bloggers
- 500 Compre colirio
- A Few Things This Week In Gaming Saturday July 11t...
- 508 Contexto
- 4x4 Racing PC In Mediafire
- 563 O reino invisivel
- 5 Saran yang Bisa Kamu Lakukan Untuk Meningkatkan ...
- 50 years of saving HumanRights powerful well craft...
- 5 GAME ANDROID DENGAN GARFIK YG MEMUKAU
- April (302)
- March (1)