learn linux and unix commands - unix shell scripting

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(3C)																 raise(3C)

NAME
raise - send a signal to the executing thread SYNOPSIS
#include <signal.h> int raise(int sig); The raise() function sends the signal sig to the executing thread. If a signal handler is called, the raise function does not return until after the signal handler returns. The effect of the raise function is equivalent to calling: pthread_kill(pthread_self(), sig); See the pthread_kill(3C) manual page for a detailed list of failure conditions and the signal.h(3HEAD) manual page for a list of signals. Upon successful completion, 0 is returned. Otherwise, -1 is returned and errno is set to indicate the error. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ pthread_kill(3C), pthread_self(3C), signal.h(3HEAD), attributes(5), standards(5) 23 Mar 2005 raise(3C)