Sponsored Content
Operating Systems OS X (Apple) Can a ios app be developed on a windows or ipad? Post 302905493 by codecaine on Wednesday 11th of June 2014 11:42:24 PM
Old 06-12-2014
Yes you can with RAD Studio XE6 by Embarcadero in either Delphi or C++. It can create natives apps for ios andriod, mac os and windows
 

7 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

How to detect if a Windows app dies??

Hello All: I hope this is the right category... I have a application (this app runs under java and jboss) that runs under Windows, it's started as a service. If that application should become disabled, crash or no longer function, what would be the best method for determining it is no longer... (6 Replies)
Discussion started by: jimmyc
6 Replies

2. Shell Programming and Scripting

Needing a line feed for windows app

I wrote a program to format data with awk. This file will goto a windows machine and loaded into a windows app. The vendor said adding a line feed would help, but it would work as is. I am already doing a /n, will putting on the /r give the windows person what he wants. Thanks. (5 Replies)
Discussion started by: benefactr
5 Replies

3. UNIX for Dummies Questions & Answers

simple app to communicate windows and linux/unix

Careful!!! This is a newbie question! Hello Community I'd like to develop a very simple application, on the one side (some windows pcs with a listener and sender) on the other side a linux server that does the same. Any suggestions about doing that? telnet, smbclient????? It must be... (3 Replies)
Discussion started by: ncatdesigner
3 Replies

4. Windows & DOS: Issues & Discussions

Linux remote app on Windows

So I have been playing around with some code and thought I would tap the vast Linux knowledge here. My company has a bunch of servers running Linux on the Amazon cloud. I have created a Windows application in C++ that acts like a remote desktop to the Linux servers. When I run it it connects... (3 Replies)
Discussion started by: bobmanc
3 Replies

5. UNIX for Dummies Questions & Answers

How can I rebuild applications that developed in UNIX? I need to use it in windows os with cygwin

I need to rebuild an application that developed in unix environment and run in windows OS with cygwin. so How can I rebuild from the source code? is there any one who said something on this regard? (2 Replies)
Discussion started by: bejirond
2 Replies

6. UNIX for Dummies Questions & Answers

Windows app over Sun Fire 445?

Please, I have a professional application that run only over windows, but I have a Full Sun Fire 445 for that. Someone can sugest me about how to do? Wich S.O can be use. Thanks before hand. Please read the forum rules again. Rule #9 should be in your focus. Thank you! (9 Replies)
Discussion started by: abelop
9 Replies

7. Programming

Wuhan Coronavirus Status App for China - Rapid Prototype using MQTT and the IoT OnOff IOS App

With a little bit of work, was able to build a nice "Wuhan Coronavirus Status" app using MQTT and the IoT-OnOff app. More on this technique here: ESP32 (ESP-WROOM-32) as an MQTT Client Subscribed to Linux Server Load Average Messages The result turned out nice, I think. I like the look and... (10 Replies)
Discussion started by: Neo
10 Replies
pthread_rad_attach(3)					     Library Functions Manual					     pthread_rad_attach(3)

NAME
pthread_rad_attach, pthread_rad_bind - Attaches or binds a thread to a NUMA Resource Affinity Domain (libpthread library) SYNOPSIS
#include <numa.h> int pthread_rad_attach( pthread_t thread, radset_t radset, ulong_t flags ); int pthread_rad_bind( pthread_t thread, radset_t radset, ulong_t flags ); PARAMETERS
Identifies the thread to be attached or bound to the specified set of Resource Affinity Domains (RADs). Identifies the RAD set to which the thread is to be attached or bound. DESCRIPTION
The pthread_rad_attach() function attaches the thread specified by the thread argument to the RAD set specified by the radset argument. The pthread_rad_bind() function binds the specified thread to the specified RAD set. While both functions assign a home RAD for the thread, an attach operation allows remote execution on other RADs while a bind operation restricts execution to the home RAD. In the following paragraphs, the term "assign" is used when the description refers equally to both the attach and the bind operations. The memory allocation policy for the process will be set to MPOL_THREAD. The home RAD for the process will be selected by the system sched- uler from among the RADs included in radset based on current system load balance and the flags argument. The overflow set (mattr_radset) for the process will be set to radset. The following symbolic values are defined for the flags argument: The requested assignments are mandatory. If this option is not set, the system will consider the request to be a "hint" and may take no action for any or all of specified processes. The thread has small memory requirements, so the system should (for the home RAD) favor those RADs with light CPU loads, independent of their available memory. The thread has large memory requirements, so the system should (for the home RAD) favor those RADs with more available memory, independent of their CPU loads. If the caller does not have partition administration privilege and if the radset argument contains RADs that are not in the caller's parti- tion, an error will be returned. NOTES
The value for the radset argument could be obtained from an nloc() call to assign or migrate the process to a RAD close (or closer) to a particular resource. When obtained in this manner, the radset value will identify RADs that were in the caller's partition at the time of the nloc() call. The partition configuration could change between the call to nloc() and a subsequent call to pthread_rad_attach(), result- ing in an error. An application should be prepared to handle this error, even though it should not be a frequent occurrence. RETURN VALUES
Success. Failure. In this case, the integer value indicates the type of error. Possible errors are as follows: The thread is hard attached (RAD_INSIST) to RADs or has memory wired (locked) on its current RAD such that it cannot be migrated to the specified RAD set. One of more of the RADs in the radset argument or options in the flags argument are invalid. RAD_INSIST and RAD_MIGRATE were specified, and the thread cannot be migrated because insufficient memory exists on RADs in the specified RAD set. The caller does not have appropriate privileges to assign processes to RADs in the specified RAD set. The thread specified by thread does not exist. ERRORS
None. SEE ALSO
Functions: nloc(3), pthread_rad_detach(3) pthread_rad_attach(3)
All times are GMT -4. The time now is 10:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy