Sponsored Content
Top Forums Programming C Compiler for Solaris 8 (Intel) Post 25294 by Marc Rochkind on Saturday 27th of July 2002 06:05:02 PM
Old 07-27-2002
Thanks... I will keep this hint in mind.
Marc Rochkind
 

7 More Discussions You Might Find Interesting

1. IP Networking

Solaris 8 on Intel TCP/IP

I have just installed solaris 8 for Intel on one of my machines at home and I have a cable modem connection with a static IP and I am using a linksys cable/dsl router to assign IP's to my machines. I was wondering if any of you guys know the specific files and examples of the files I have to... (2 Replies)
Discussion started by: reggie316
2 Replies

2. UNIX for Advanced & Expert Users

kde on solaris 8 intel

hi. Have anyone use kde for solaris, if so can you help me download and configure it. i don't know which files i should download for solaris because there lots of files. Could you point me to the right path.thanks in advance. (9 Replies)
Discussion started by: souldier
9 Replies

3. UNIX for Dummies Questions & Answers

Solaris 8 Intel

Do you now have to pay to download the Solaris 8 OE? If so when did they change it? (3 Replies)
Discussion started by: tycobb
3 Replies

4. UNIX for Advanced & Expert Users

Solaris on Intel

I was wondering what features are not available on Solaris installed on Intel architecture as compared to the SPARC archietecture?? :-) (3 Replies)
Discussion started by: encrypted
3 Replies

5. Solaris

Intel Based Solaris

Hello all mentor. I am a new in this furom and also just self studying unix environment. :confused: I have installed intel solaris 9 in my laptop and i have forgotten the root password nor maybe the numlock or capslock of the keyboard was enabled during I enter the password installation... (3 Replies)
Discussion started by: eykyn17
3 Replies

6. Solaris

OBP on Solaris 10-intel

Hi All, How can I go to OBP on Solaris 10-intel? I tried doing ctrl+c or ctrl+break, it won't go to the "ok" prompt. Thanks in advance, itik (6 Replies)
Discussion started by: itik
6 Replies

7. Solaris

solaris 10 cd install(intel)

just need help with loading solaris 10 from cds that i bought from sun. i have a dell box that had solaris 8 on it, wiped it and stuck in the cd1 for solaris 10. selected "solaris" for install. went through a few minutes then comes up with"sunOS Release 5.10 version generic_137138-09 32-bit,... (3 Replies)
Discussion started by: flir11
3 Replies
shishi_tkts_find(3)						      shishi						       shishi_tkts_find(3)

NAME
shishi_tkts_find - API function SYNOPSIS
#include <shishi.h> Shishi_tkt * shishi_tkts_find(Shishi_tkts * tkts, Shishi_tkts_hint * hint); ARGUMENTS
Shishi_tkts * tkts ticket set handle as allocated by shishi_tkts(). Shishi_tkts_hint * hint structure with characteristics of ticket to be found. DESCRIPTION
Search the ticketset sequentially (from ticket number 0 through all tickets in the set) for a ticket that fits the given characteristics. If a ticket is found, the hint->startpos field is updated to point to the next ticket in the set, so this function can be called repeatedly with the same hint argument in order to find all tickets matching a certain criterium. Note that if tickets are added to, or removed from, the ticketset during a query with the same hint argument, the hint->startpos field must be updated appropriately. HERE IS HOW YOU WOULD TYPICALLY USE THIS FUNCTION
Shishi_tkts_hint hint; Shishi_tkt tkt; memset(&hint, 0, sizeof(hint)); hint.server = "imap/mail.example.org"; tkt = shishi_tkts_find (shishi_tkts_default(handle), &hint); if (!tkt) printf("No ticket found...0); else do_something_with_ticket (tkt); RETURN VALUE
Returns a ticket if found, or NULL if no further matching tickets could be found. REPORTING BUGS
Report bugs to <bug-shishi@gnu.org>. COPYRIGHT
Copyright (C) 2002-2010 Simon Josefsson. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for shishi is maintained as a Texinfo manual. If the info and shishi programs are properly installed at your site, the command info shishi should give you access to the complete manual. shishi 1.0.1 shishi_tkts_find(3)
All times are GMT -4. The time now is 03:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy