Tagged Questions
0
votes
1answer
22 views
how to stop a process when another is running java android
i am doing an app in android that connecting with servers and downloading some chunks.
now i want to have another one process doing other job. here is my code
class RemindTask extends TimerTask {
...
0
votes
1answer
104 views
Compile x264 with Thread Support for Android Platform
I've been tryin' to compile x264 for Android with Thread Support...But with no success...
I've managed to compile the same without thread support...The configure command is as follows :
./configure ...
3
votes
1answer
445 views
android NDK mutex locking
I've been porting a cross platform C++ engine to Android, and noticed that it will inexplicably (and inconsistently) block when calling pthread_mutex_lock. This engine has already been working for ...
0
votes
0answers
49 views
Thread disconnected while calling native function from android application
I have a shared library which is a C++ project that I build using NDK to port into my android application.
The problem I am facing now when I call a native function from my android application the ...
1
vote
1answer
262 views
call java functions in pthread with NDK
I want to call a java method inside a pthread.
the C++ method start like this :
char* FileLoader::getStringFromFile(char* a_filename)
{
JNIEnv *env;
g_jvm->AttachCurrentThread (&env, ...
0
votes
0answers
66 views
weird result after multiple simultaneous calls to pthread_join() specifying the same target
I'm currently debugging an android native program which has 2 threads (let's call it as A and B) almost simultaneous call pthread_join() on a same target (let's call the target thread as C). And I ...
0
votes
3answers
92 views
How thread handles display in Android?
I have a basic question on display in android. I am unable to understand how thread behaves when some display function is called. Specifically suppose I create a thread for displaying a thumbnail ...
3
votes
1answer
983 views
How to invoke callback(JAVA) from pthread(C) in Android NDK
I want to invoke java method in pthread function.
But I faced:
JNI_ERROR: non-VM thread making JNI calls
What should I do?
0
votes
1answer
655 views
Android NDK pthread multicore
I have a big array, iterating and doing my work over it takes about 50ms.
App i am developing will run on tegra3 or other fast cpu.
I have divided my work for four threads, using pthread, i have taken
...
0
votes
0answers
108 views
pthread_create fails with SIGILL randomly (and very rarely) [closed]
Have anyone else encountered this problem? Is there any solution?
1
vote
2answers
683 views
Native Android, Interlocked/Atomic operations
Interlocked/Atomic operations are CPU specific.
Is there any common baseline requirement by all Android supporting hardware as far as for interlocked operations?
Are there any interlocked operations ...
1
vote
2answers
922 views
Thread synchronization @ Native Android
Windows CRITICAL_SECTION is implemented in a way lighter than mutex ( as far as for the lock/unlock perf cost ) By utilizing a spinlock and a semaphore to reduce user/kernel switches.
A mutex require ...
0
votes
2answers
260 views
pthread_t is in android and linux
I'm new to android. Checked in android pthread_t is defined as typedef long int pthread_t, I am not sure how it is defined in Linux. If it is defined to native datatype, and it difference from ...
2
votes
0answers
247 views
Finding usage of resources (CPU and memory) by threads of a process in Android
I have a multi-threaded application(C++,C and pthread library) and I will like to know how much resources(CPU and memory) each thread uses. Is there a way to find out these details on Android?
I have ...
0
votes
4answers
461 views
Downloading and installing APK
I made code that download APK from ftp, and I`m trying to install it after download. I wrote this for Honeycomb, so in every connection i have to use threads. How can I use startActivity in class ...
1
vote
1answer
331 views
Real-time UI update with pthread
This code apparently runs well, but I read about pthreads and two threads can't read/write at the same time.
class Sound{
private:
std::vector<int> waveColors;
int progress;
...
1
vote
1answer
791 views
Error with memset when compiling c++ code for threads in android ndk
I have a Problem. I want to create a thread in Android 2.3.4 with the NDK r7. When I compile this code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include ...
-1
votes
1answer
5k views
How to use pthreads with Android NDK? [closed]
As I know pthreads is a part of C library.
Android has Bionic C library.
How to use pthreads with Android NDK?
8
votes
4answers
493 views
How to write dead simple native SERVER program (not app) for Android devices?
First of all, I believe, it's not a duplicate question. I don't want to write a native app with NDK, I just want to use Android device as a cheap Linux server. Server, in this context, means a ...
0
votes
3answers
953 views
Android NDK: OpenGL draw calls in thread outside of android_main
I have a purely native Android NDK app. The main loop is in
android_main
as provided by the android_native_app_glue.h.
I need to render something in a separate thread, so via android_main I ...
4
votes
2answers
557 views
Pthreads dying in the middle of a mutex lock
I was thinking of the following scenario happening while a pthread is running:
pthread_mutex_lock(...);
... // <- Thread dies here
pthread_mutex_unlock(...);
in other words, a pthread starts, at ...
2
votes
1answer
1k views
Linux 2.6 kernel process management
Where can i find some information on process management in the linux 2.6 kernel. Because android uses this and i would like to find out how memory is managed, processes are scheduled and used, etc...
...
3
votes
1answer
927 views
CMake : FIND_PACKAGE(Threads) for Android cross-compilation
I'm using the Android NDK and Cmake to generate shared libraries of my project.
I'm porting an existing project from Ubuntu to Android, and right now I need to port some executables files. I compile ...
1
vote
1answer
564 views
I get force close when I start a new thread!
I have an app in android which is something like a client server application and inside my program at a certain point I start a new thread meant to connect the client to the server.
My problem is ...
4
votes
2answers
2k views
android + pthread + c++ = SIGSEGV
The following code compiles and runs on standard linux:
#include <iostream>
#include <pthread.h>
using namespace std;
class Foo
{
public:
Foo();
void go_thread();
...
1
vote
1answer
2k views
bionic (android libc) mutex variants
Which types of mutex does bionic libc support?
recursive
timed
adaptive
errorchecking
