unix and linux operating commands

Architect: Collaborating on Design Patterns

 
Thread Tools Search this Thread
# 1  
Old 02-21-2011
Architect: Collaborating on Design Patterns

It takes an architect community to raise a collection of SOA design patterns.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash - Find files excluding file patterns and subfolder patterns

Hello. For a given folder, I want to select any files find $PATH1 -f \( -name "*" but omit any files like pattern name ! -iname "*.jpg" ! -iname "*.xsession*" ..... \) and also omit any subfolder like pattern name -type d \( -name "/etc/gconf/gconf.*" -o -name "*cache*" -o -name "*Cache*" -o... (2 Replies)
Discussion started by: jcdole
2 Replies

2. Shell Programming and Scripting

Find matched patterns and print them with other patterns not the whole line

Hi, I am trying to extract some patterns from a line. The input file is space delimited and i could not use column to get value after "IN" or "OUT" patterns as there could be multiple white spaces before the next digits that i need to print in the output file . I need to print 3 patterns in a... (3 Replies)
Discussion started by: redse171
3 Replies

3. Programming

c++, design patterns and Unix

I know this is C Unix section, still I address a C++ question. How often did you see/use/apply or consider is welcome to write C++ code on Unix, based on 'design patters'? Since I'm at the very beginning with Unix programming, I have this doubt, ... about DP techniques and languages where to apply... (3 Replies)
Discussion started by: mihk
3 Replies
Login or Register to Ask a Question
raise(3)						     Library Functions Manual							  raise(3)

NAME
raise - Sends a signal to the executing process or thread LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <signal.h> int raise( int signal ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: raise(): XSH5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies a signal number. DESCRIPTION
The raise() function sends the signal specified by the signal parameter to the invoking thread. In single-threaded programs this is equiva- lent to: kill(getpid(), signal); The behavior of the raise() function is equivalent to: pthread_kill(pthread_self(), signal); RETURN VALUES
Upon successful completion of the raise() function, a value of 0 (zero) is returned. Otherwise, a nonzero value is returned and errno is set to indicate the error. ERRORS
The raise() function sets errno to the specified values for the following conditions: The value of the signal parameter is an invalid sig- nal number. RELATED INFORMATION
Functions: kill(2), sigaction(2) Standards: standards(5) delim off raise(3)