Globus Toolkit 4.0.6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Globus Toolkit 4.0.6 (Default branch)
# 1  
Old 01-31-2008
Globus Toolkit 4.0.6 (Default branch)

Globus is a project to provide robust, secure, peer-to-peer distributed computing on supercomputers, clusters, and other high-performance systems. It differs from other such network toolkits in that it is tuned to the needs of high-end machines.License: The Apache LicenseChanges:
Numerous bugfixes, some severe. Improved timeouts. Connection caching has been added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Ubuntu

Installation problem in globus toolkit 5.0.1

I have installed globus toolkit 5.0.1 on ubuntu 9. All the packages mentioned in quick start guide, like security, gridftp, gram, myproxy. But i don't know how to start web services in globus 5.0.1. There is no help provided in quick start for this. I need WSRF for making grid data mining... (0 Replies)
Discussion started by: naveencse
0 Replies

2. Ubuntu

Installation problem in globus toolkit 4.0.8

I am installing globus toolkit 4.0.8 on ububtu 9.1. When i build gt4.0.8-all-source.... executing, make | tee installer.log , as mentioned in quick start provided by globus, i got error saying, Following packages are missing, pgm_link-globus_ftp_client-ANY-dev version 5.2 is incompatible with... (0 Replies)
Discussion started by: naveencse
0 Replies

3. Linux

compatiblité fedora 11 and globus toolkit 4.0.1

hello i search if fedora 11 is compatible with Globus Toolkit 4.0.1.thank's (2 Replies)
Discussion started by: spam255
2 Replies

4. UNIX for Advanced & Expert Users

Globus toolkit WS Gram Build Problem

Dear Sir/Madam We are trying to configure Grid in our computer lab. We have already installed all the required software for configuring the grid. At present we are configuring it for 3 nodes. We are using Fedora 8 OS. We are using Sun Grid Engine (SGE) and Globus Tool Kit for configuring the... (0 Replies)
Discussion started by: garudawar
0 Replies

5. UNIX for Advanced & Expert Users

Globus Toolkit 4

Hello! I'm trying to install the Globus Toolkit 4 on a Fedora 8 system. The instructions I'm using to do so can be found here: Chapter 1. 4.0.x quickstart I'm at the Certificate Authorities point where I am supposed to sign the certificate though, and I'm having a bit of trouble that... (2 Replies)
Discussion started by: Curtor
2 Replies

6. Linux

globus toolkit installation error

i got this error while installing gt4 on fedora core 3. please help root@localhost gt4.0.6-x86_fc_3-installer]# make | tee installer.log cd gpt && OBJECT_MODE=32 ./build_gpt Can't locate Localize.pm in @INC (@INC contains: ./tools /usr/lib/perl5/5.8.5/i386-linux-thread-multi... (0 Replies)
Discussion started by: tushru2004
0 Replies
Login or Register to Ask a Question
Globus Callback(3)						   globus common						Globus Callback(3)

NAME
Globus Callback - Modules Globus Callback API Globus Callback Spaces Macros #define GLOBUS_CALLBACK_MODULE #define GLOBUS_POLL_MODULE Typedefs typedef int globus_callback_handle_t typedef int globus_callback_space_t typedef struct globus_l_callback_space_attr_s * globus_callback_space_attr_t" Enumerations enum globus_callback_error_type_t { GLOBUS_CALLBACK_ERROR_INVALID_CALLBACK_HANDLE = 1024, GLOBUS_CALLBACK_ERROR_INVALID_SPACE, GLOBUS_CALLBACK_ERROR_MEMORY_ALLOC, GLOBUS_CALLBACK_ERROR_INVALID_ARGUMENT, GLOBUS_CALLBACK_ERROR_ALREADY_CANCELED, GLOBUS_CALLBACK_ERROR_NO_ACTIVE_CALLBACK } Detailed Description Macro Definition Documentation #define GLOBUS_CALLBACK_MODULE Module descriptor. Module descriptor for for globus_callback module. Must be activated before any of the following api is called. Note: You would not normally activate this module directly. Activating the GLOBUS_COMMON_MODULE will in turn activate this also. #define GLOBUS_POLL_MODULE Module descriptor. Deprecated Backward compatible name Typedef Documentation typedef int globus_callback_handle_t Periodic callback handle. This handle can be copied or compared, and represented as NULL with GLOBUS_NULL_HANDLE typedef int globus_callback_space_t Callback space handle. This handle can be copied or compared and represented as NULL with GLOBUS_NULL_HANDLE typedef struct globus_l_callback_space_attr_s* globus_callback_space_attr_t Callback space attribute. This handle can be copied and represented as NULL with GLOBUS_NULL Enumeration Type Documentation enum globus_callback_error_type_t Error types. Possible error types returned by the api in this module. You can use the error API to check results against these types. See Also: Error Handling Helpers Enumerator: GLOBUS_CALLBACK_ERROR_INVALID_CALLBACK_HANDLE The callback handle is not valid or it has already been destroyed. GLOBUS_CALLBACK_ERROR_INVALID_SPACE The space handle is not valid or it has already been destroyed. GLOBUS_CALLBACK_ERROR_MEMORY_ALLOC Could not allocate memory for an internal structure. GLOBUS_CALLBACK_ERROR_INVALID_ARGUMENT One of the arguments is NULL or out of range. GLOBUS_CALLBACK_ERROR_ALREADY_CANCELED Attempt to unregister callback again. GLOBUS_CALLBACK_ERROR_NO_ACTIVE_CALLBACK Attempt to retrieve info about a callback not in callers's stack. Author Generated automatically by Doxygen for globus common from the source code. Version 14.7 Tue Nov 27 2012 Globus Callback(3)