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
radsetops(3)						     Library Functions Manual						      radsetops(3)

NAME
radsetops, radaddset, radandset, radcopyset, radcountset, raddelset, raddiffset, rademptyset, radfillset, radisemptyset, radismember, radorset, radsetcreate, radsetdestroy, radxorset - Perform operations on a set of Resource Affinity Domains (libnuma library) SYNOPSIS
#include <radset.h> int radaddset( radset_t set, radid_t radid ); int radandset( radset_t set_src1, radset_t set_src2, radset_t set_dst ); int radcopyset( radset_t set_src, radset_t set_dst ); int radcountset( radset_t set ); int raddelset( radset_t set, radid_t radid ); int raddiffset( radset_t set_src1, radset_t set_src2, radset_t set_dst ); int rademptyset( radset_t set ); int radfillset( radset_t set ); int radisemptyset( radset_t set ); int radismember( radset_t set, radid_t radid ); int radorset( radset_t set_src1, radset_t set_src2, radset_t set_dst ); int radsetcreate( radset_t *set ); int radsetdestroy( radset_t *set ); int radxorset( radset_t set_src1, radset_t set_src2, radset_t set_dst ); PARAMETERS
Identifies the RAD for which the function is requesting information or on which the function operates. Specifies or points to a set of Resource Affinity Domains (RADs) on which the function operates. Specifies, depending on the function, one of the following: A source RAD set that the function copies to a destination RAD set One of two RAD sets for which the function will find a logical difference One of two RAD sets on which the function will perform a logical AND, OR, or XOR operation Specifies the destination RAD set where the function stores the results of the logical operation it performs. DESCRIPTION
The radsetops primitives manipulate a specified set of Resource Affinity Domains (RADs). These functions operate on data objects (of type radset_t) that are created by calls to radsetcreate(). The radsetcreate() function allocates, and sets to empty, the specified RAD set. The radsetdestroy() function releases the RAD set memory allocated by radsetcreate(). The radfillset() function initializes the specified RAD set, such that all RADs that are currently configured in the caller's partition are included in that set. The radcountset() function returns the number of members in the specified RAD set. The rademptyset() function reinitializes the specified RAD set, such that no RADs are included in that set. The radisemptyset() function tests whether the specified RAD set is empty. The radismember() function tests whether the specified RAD is a member of the specified RAD set. The radaddset() and raddelset() functions respectively add or delete the specified RAD from the specified RAD set. The raddiffset() function finds the logical difference between the RAD sets specified by the arguments set_src1 and set_src2 and stores the result in the RAD set specified by set_dst. (The result is made up of those members included in set_src1 but not in set_src2.) The radandset(), radorset(), and radxorset()functions respectively perform a logical AND, OR, or XOR operation on the RAD sets specified by the arguments set_src1 and set_src2, storing the result in the RAD set specified by set_dst. RETURN VALUES
The radisemptyset() and radismember() functions return the following values: Success (True). Success (False). Failure. In this case, errno is set to indicate the type of error. The remaining functions return the following values: Success. Failure. In this case, errno is set to indicate the type of error. ERRORS
If the radcountset(), rademptyset(), radfillset(), radisemptyset(), radorset(), radxorset(), radandset(), raddiffset(), and radcopyset() functions fail, they set errno to the following value for the specified condition specified: The specified RAD set is invalid, possibly not created by radsetcreate(). If the radsetcreate() and radsetdestroy() functions fail, they set errno to one of the following values for the condition specified: The set argument points to an invalid address. (radsetcreate() only) No memory could be allocated for the RAD set. If the radaddset(), raddelset(), and radismember() functions fail, they set errno to one of the following values for the condition speci- fied: The specified RAD set is invalid, possibly not created by radsetcreate(). The value of radid is an invalid or unsupported RAD iden- tifier. EXAMPLES
The following example demonstrates various operations on RAD sets: #include <radset.h> int main() { radset_t radset, radset2; /* Create radsets - initialized as empty */ radsetcreate(&radset); radsetcreate(&radset2); /* demonstrate radset operations */ /* add rad 0 to radset */ if (radaddset(radset, 0) == -1) { perror("radaddset"); return 0; } /* copy radset to radset2 */ if (radcopyset(radset, radset2) == -1) { perror("radcopyset"); return 0; } /* add rad 1 to radset */ if (radaddset(radset, 1) == -1) { perror("radaddset"); return 0; } /* store the difference of radset and radset2 in radset */ if (raddiffset(radset, radset2, radset) == -1) { perror("raddiffset"); return 0; } /* Enumerate radset. */ while (1) { radid_t id; int flags = SET_CURSOR_CONSUME; rad_cursor_t rad_cursor = SET_CURSOR_INIT; id = rad_foreach(radset, flags, &rad_cursor); if (id == RAD_NONE) { printf(" "); break; } else { printf("%3d ", id); } } /* Destroy radset and radset2*/ radsetdestroy(&radset); radsetdestroy(&radset2); return 0; } SEE ALSO
Functions: numa_intro(3), rad_foreach(3) Files: numa_types(4) radsetops(3)
All times are GMT -4. The time now is 03:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy