home *** CD-ROM | disk | FTP | other *** search
- /*
- $Id$
- $Log$
- Desc:
- Lang: english
- */
- #include "exec_intern.h"
-
- /*****************************************************************************
-
- NAME */
- #include <clib/exec_protos.h>
-
- __AROS_LH1(struct MsgPort *, FindPort,
-
- /* SYNOPSIS */
- __AROS_LA(UBYTE *, name, A1),
-
- /* LOCATION */
- struct ExecBase *, SysBase, 65, Exec)
-
- /* FUNCTION
- Look for a public messageport by name. This function doesn't
- arbitrate for the port list and must be protected with a Forbid()
- Permit() pair.
-
- INPUTS
- port - Pointer to NUL terminated C string.
-
- RESULT
- Pointer to struct MsgPort or NULL if there is no port of that name.
-
- NOTES
-
- EXAMPLE
-
- BUGS
-
- SEE ALSO
-
- INTERNALS
-
- HISTORY
- 29-10-95 digulla automatically created from
- exec_lib.fd and clib/exec_protos.h
- 17-12-95 digulla Incorporated code by Matthias Fleischner
-
- *****************************************************************************/
- {
- __AROS_FUNC_INIT
-
- /* Nothing spectacular - just look for that name. */
- return (struct MsgPort *)FindName(&SysBase->PortList,name);
-
- __AROS_FUNC_EXIT
- } /* FindPort */
-