Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
85 views

Read an image file C++ and put it on a socket

i'm trying to develop a little web server in C++ but i have a problem when i try to read an image file and write it in a socket buffer. I found a similar function written in C that works perfectly, i ...
1
vote
2answers
35 views

What is difference b/w PRLock and PRRWLock

What is the difference b/w PRLock and PRRWLock provided by nspr library ?
1
vote
1answer
868 views

jsprf.c:644: error: incompatible types in assignment

Can you help me with this error I encountered while building Spidermonkey in PPC? make -f Makefile.ref cat: ../../dist/Linux_All_DBG.OBJ/nspr/Version: No such file or directory cd editline; make ...
0
votes
0answers
69 views

Working with files NPAPI/PPAPI/NSPR

I need in Chrome extension these actions: Download binary file to temp Unzip it (it's clear .zip package) Move files from unpacked directory, to directory of my extension Delete temp files I've ...
0
votes
0answers
84 views

building NSPR (Netscape Portable Runtime) on iOS / iPhone / ARMv7

I'm investigating if it's feasable to compile the Netscape Portable Runtime for iOS or ARM. I'm writing a porto of a mac/win program that use NSPR, and doing so would save me a lot of time by using ...
0
votes
0answers
16 views

How to kill nspr thread?

http://www.mozilla.org/projects/nspr/reference/html/prthrd.html I am not finding a way to kill nspr thread. Is there any way to kill nspr thread ?
0
votes
1answer
264 views

building mozilla NSPR using MinGw on windows without VC++

I need to use spidermonkey for my perl javascript engine. For that I need to build spidermonkey with thread-safe libraries. So as I understand I need to first build NSPR and then spidermonkey. So, ...
0
votes
1answer
168 views

How to use NSPR?

I am writing a sample code and i would be using NSPR libraries! I work on MS VC++ and use visual studio 2010. How do I include these libraries and use it with windows? My main goal is to achieve ...
0
votes
1answer
140 views

Spidermonkey pointing to a NSPR/DIST directory, HELP!

I've been trying to cross-compile Spidermonkey and I am stuck with the problem wherein prtypes.h(NSPR) is unrecognizable. I alread triedy modifying Makefile.ref/config.mk/jsconfig.mk to point to a ...
0
votes
1answer
51 views

NSPR locks with timeout

I am using NSPR as my cross-platform threading library and using these locks: PRLock and PRRWLock. I want a timeout in the lock functions. So that, it should wait for 45 seconds, and if it is not able ...